diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-12-11 18:21:18 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-12-11 18:21:18 +0000 |
commit | 4cfd308098db9eccc48a2cb47c769ec4bcc65d9d (patch) | |
tree | 33be8371f0a33e7af6a178a897836fd2b564fffd /scripts/toolchain-config.in | |
parent | 790695af6f770bf5ad8b15c76f9874da588fc7b3 (diff) | |
download | crosstool-ng-4cfd308098db9eccc48a2cb47c769ec4bcc65d9d.tar.gz crosstool-ng-4cfd308098db9eccc48a2cb47c769ec4bcc65d9d.tar.bz2 crosstool-ng-4cfd308098db9eccc48a2cb47c769ec4bcc65d9d.zip |
Move toolchain-config.in from tools/ to scripts/
Small documentation fix.
/trunk/scripts/crosstool.sh | 2 1 1 0 +-
/trunk/docs/overview.txt | 1 1 0 0 +
2 files changed, 2 insertions(+), 1 deletion(-)
Diffstat (limited to 'scripts/toolchain-config.in')
-rw-r--r-- | scripts/toolchain-config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/toolchain-config.in b/scripts/toolchain-config.in new file mode 100644 index 00000000..d8a4df32 --- /dev/null +++ b/scripts/toolchain-config.in @@ -0,0 +1,8 @@ +#!/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 ### |