Android build: use better sed syntax

There is no reason to use '!' as separator and in some shell environments this
can cause problems.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-12-25 21:57:08 -08:00
parent 8e299727df
commit 320ff2eba3

View file

@ -323,7 +323,7 @@ cmake $MOBILE_CMAKE \
# sometimes cmake tries to link both against the static and shared
# libcrypto - that's not helpful
sed -i "s!-lcrypto!!g" CMakeFiles/subsurface-mobile.dir/link.txt
sed -i -e "s/-lcrypto//g" CMakeFiles/subsurface-mobile.dir/link.txt
# now build Subsurface and use the rest of the command line arguments
make $@