diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2008-01-06 23:16:42 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2008-01-06 23:16:42 (GMT) |
commit | 7e5d6de6cd4194371cae97a3f0df9db50f0db7db (patch) | |
tree | 9276cd077be08c0506f59fc4c54fb0cf446334ed | |
parent | 47bc00803dff22c4f1822547c886a4e0a3a328e8 (diff) | |
download | mxe-7e5d6de6cd4194371cae97a3f0df9db50f0db7db.zip mxe-7e5d6de6cd4194371cae97a3f0df9db50f0db7db.tar.gz mxe-7e5d6de6cd4194371cae97a3f0df9db50f0db7db.tar.bz2 |
bugfix: forgotten option "-i" in a "sed" command
-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 546e191..ae32a57 100755 --- a/build_mingw_cross_env.sh +++ b/build_mingw_cross_env.sh @@ -1755,7 +1755,7 @@ case "$1" in --prefix="$PREFIX/$TARGET" \ --enable-threads \ LIBS="-lws2_32" - $SED 's,-fno-exceptions,,' makeinclude + $SED 's,-fno-exceptions,,' -i makeinclude $MAKE install DIRS=src cd "$SOURCE" rm -rfv "fltk-$VERSION_fltk" |