nodejs-current: Also remove -lz for mkpeephole

This commit is contained in:
Fredrik Fornwall 2017-08-08 12:18:07 +02:00
parent b51edc8567
commit 98bfb12e9d
1 changed files with 1 additions and 1 deletions

View File

@ -61,5 +61,5 @@ termux_step_configure () {
# The above statement causes some straggling \ in the makefile:
sed -i 's|-I$(srcdir)/deps/v8 \\|-I$(srcdir)/deps/v8|' out/deps/v8/src/mkpeephole.host.mk
# Remove extra libraries not needed for mkpeephole:
sed -i '/-lcares/d; /-lcrypto/d; /-lssl/d' out/deps/v8/src/mkpeephole.host.mk
sed -i '/-lcares/d; /-lcrypto/d; /-lssl/d; /-lz/d' out/deps/v8/src/mkpeephole.host.mk
}