diff options
author | Thorsten Glaser <tg@mirbsd.org> | 2011-12-11 19:59:00 +0000 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-12-18 17:30:08 +0100 |
commit | c3c577ae3eaf1b98148ce9ce2667d053714df0ef (patch) | |
tree | 221054379f292c07caf2b2b1cfeb59627b3051c9 /scripts | |
parent | 529d3cdead0d21086c4d6e2931d1b683d125e408 (diff) |
update to mksh R40d; use Link-Time Optimisation if possible
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 1224319ae..ab4ac8635 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -45,7 +45,7 @@ test -n "$KSH_VERSION" || if ! which mksh >/dev/null 2>&1; then mkdir -p build_mksh gzip -dc dl/"$df" | (cd build_mksh; cpio -mid) cd build_mksh/mksh - bash Build.sh -r || exit 1 + bash Build.sh -r -c lto || exit 1 cp mksh "$TOPDIR"/bin/tools/ cd "$TOPDIR" rm -rf build_mksh |