summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-02-19 16:14:16 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-02-19 16:14:16 +0100
commit63595c8c3f19a85d105a41da337aa2ca968f4098 (patch)
tree7c7fe83a5e2b397161609b6c73b0c4e7dabd7833 /scripts
parentb12d05eaac6fece851a48de9494b2855f17618db (diff)
parent1abce8781525931b856754751e2595e68be74e0f (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create.sh b/scripts/create.sh
index 058942314..634a87643 100755
--- a/scripts/create.sh
+++ b/scripts/create.sh
@@ -31,8 +31,8 @@ TOPDIR=$(pwd)
me=$0
case :$PATH: in
-(*:$TOPDIR/bin/tools:*) ;;
-(*) export PATH=$PATH:$TOPDIR/bin/tools ;;
+(*:$TOPDIR/bin:*) ;;
+(*) export PATH=$PATH:$TOPDIR/bin ;;
esac
test -n "$KSH_VERSION" || if ! which mksh >/dev/null 2>&1; then
@@ -43,7 +43,7 @@ test -n "$KSH_VERSION" || if ! which mksh >/dev/null 2>&1; then
gzip -dc dl/"$df" | (cd build_mksh; cpio -mid)
cd build_mksh/mksh
bash Build.sh -r -c lto || bash Build.sh -r || exit 1
- cp mksh "$TOPDIR"/bin/tools/
+ cp mksh "$TOPDIR"/bin
cd "$TOPDIR"
rm -rf build_mksh
fi