diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2007-08-09 08:39:17 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2007-08-09 08:39:17 (GMT) |
commit | 05fc0a44817feb21fc0740350a8e8b0f315de131 (patch) | |
tree | 7572583d1403ca61f58d173909a2abe24639ea24 | |
parent | c5ecdecfdf1f94d6204d2868e1f83be6ab374cb0 (diff) | |
download | mxe-05fc0a44817feb21fc0740350a8e8b0f315de131.zip mxe-05fc0a44817feb21fc0740350a8e8b0f315de131.tar.gz mxe-05fc0a44817feb21fc0740350a8e8b0f315de131.tar.bz2 |
use "strip -g" instead of "strip -S" to avoid confusion with "strip -s"
-rwxr-xr-x | build_mingw_cross_env.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_mingw_cross_env.sh b/build_mingw_cross_env.sh index 9a24fef..df626dc 100755 --- a/build_mingw_cross_env.sh +++ b/build_mingw_cross_env.sh @@ -2051,7 +2051,7 @@ case "$1" in bin/* \ libexec/gcc/$TARGET/*/* \ $TARGET/bin/* || echo "strip error ignored" - $TARGET-strip -Sv \ + $TARGET-strip -gv \ lib/gcc/$TARGET/*/*.a \ lib/gcc/$TARGET/*/*.o \ $TARGET/lib/*.a \ |