mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
692749b67e
/trunk/scripts/crosstool-NG.sh.in | 1 1 0 0 + /trunk/scripts/toolchain-config.in | 2 1 1 0 +- 2 files changed, 2 insertions(+), 1 deletion(-)
9 lines
236 B
Bash
9 lines
236 B
Bash
#!/bin/sh
|
|
|
|
SKIP_ME="### CT_NG SKIP ME ###"
|
|
skip_me=$(($(cat "${0}" |@@grep@@ --binary-files=text -o -b -E "^${SKIP_ME}$" |cut -d : -f 1)+${#SKIP_ME}+1))
|
|
dd if="${0}" bs=${skip_me} skip=1 2>/dev/null |bzcat
|
|
exit 0
|
|
|
|
### CT_NG SKIP ME ###
|