diff options
author | Marius Kintel <marius@kintel.net> | 2012-07-17 02:12:57 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-07-17 02:12:57 (GMT) |
commit | 821c064f3e6d624152b49f2297b750bdc53f3a5f (patch) | |
tree | 8d757ed4f8bd89b2622c23de2ecadb0bc00aa519 /scripts/macosx-build-dependencies.sh | |
parent | 3267ba2d56b5803a5622ba644aa2077a9a93d1c9 (diff) |
sed parameter bug for build_glew(). Fixes #145
Diffstat (limited to 'scripts/macosx-build-dependencies.sh')
-rwxr-xr-x | scripts/macosx-build-dependencies.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index 26420e0..0ce9908 100755 --- a/scripts/macosx-build-dependencies.sh +++ b/scripts/macosx-build-dependencies.sh @@ -232,7 +232,7 @@ build_glew() cd glew-$version mkdir -p $DEPLOYDIR/lib/pkgconfig # To avoid running strip on a fat archive as this is not supported by strip - sed -i bak -e "s/\$(STRIP) -x lib\/\$(LIB.STATIC)//" Makefile + sed -ibak -e "s/\$(STRIP) -x lib\/\$(LIB.STATIC)//" Makefile if $OPTION_32BIT; then GLEW_EXTRA_FLAGS="-arch i386" fi |