diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-02-16 03:12:53 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-02-16 03:12:53 (GMT) |
commit | e1ab4466ff074344814fdb36c8c9d7acf08b2000 (patch) | |
tree | 1e2ad25cbda6d1c48f9e0586a93e2b92c0f27246 /src/freetds.mk | |
parent | 18316ec7d018eb15683c7a8b316351d83b3a1495 (diff) | |
download | mxe-e1ab4466ff074344814fdb36c8c9d7acf08b2000.zip mxe-e1ab4466ff074344814fdb36c8c9d7acf08b2000.tar.gz mxe-e1ab4466ff074344814fdb36c8c9d7acf08b2000.tar.bz2 |
changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Diffstat (limited to 'src/freetds.mk')
-rw-r--r-- | src/freetds.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freetds.mk b/src/freetds.mk index eafad27..3e23a77 100644 --- a/src/freetds.mk +++ b/src/freetds.mk @@ -22,10 +22,10 @@ endef define $(PKG)_BUILD # package uses winsock2.h, so it should link to ws2_32 instead of wsock32 - $(SED) 's,wsock32,ws2_32,g' -i '$(1)'/configure + $(SED) -i 's,wsock32,ws2_32,g' '$(1)'/configure # wine confuses the cross-compiling detection, so set it explicitly - $(SED) 's,cross_compiling=no,cross_compiling=yes,' -i '$(1)/configure' + $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure' # beware --with-gnutls broken detection cd '$(1)' && ./configure \ |