summaryrefslogtreecommitdiffstats
path: root/src/openssl.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/openssl.mk')
-rw-r--r--src/openssl.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/openssl.mk b/src/openssl.mk
index 2bbdbf1..479057c 100644
--- a/src/openssl.mk
+++ b/src/openssl.mk
@@ -23,13 +23,13 @@ endef
define $(PKG)_BUILD
# workarounds according to
# http://wagner.pp.ru/~vitus/articles/openssl-mingw.html
- $(SED) 's,^$$IsMK1MF=1.*,,' -i '$(1)'/Configure
- $(SED) 's,static type _hide_##name,type _hide_##name,' -i '$(1)'/e_os2.h
+ $(SED) -i 's,^$$IsMK1MF=1.*,,' '$(1)'/Configure
+ $(SED) -i 's,static type _hide_##name,type _hide_##name,' '$(1)'/e_os2.h
# use winsock2 instead of winsock
- $(SED) 's,wsock32,ws2_32,g' -i '$(1)'/Configure
+ $(SED) -i 's,wsock32,ws2_32,g' '$(1)'/Configure
find '$(1)' -type f -exec \
- $(SED) 's,winsock\.h,winsock2.h,g' -i {} \;
+ $(SED) -i 's,winsock\.h,winsock2.h,g' {} \;
cd '$(1)' && CC='$(TARGET)-gcc' ./Configure \
mingw \