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/pcre.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/pcre.mk')
-rw-r--r-- | src/pcre.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pcre.mk b/src/pcre.mk index de7d9b7..e71d3d8 100644 --- a/src/pcre.mk +++ b/src/pcre.mk @@ -19,10 +19,10 @@ define $(PKG)_UPDATE endef define $(PKG)_BUILD - $(SED) 's,__declspec(dllimport),,' -i '$(1)/pcre.h.in' - $(SED) 's,__declspec(dllimport),,' -i '$(1)/pcreposix.h' + $(SED) -i 's,__declspec(dllimport),,' '$(1)/pcre.h.in' + $(SED) -i 's,__declspec(dllimport),,' '$(1)/pcreposix.h' # 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' cd '$(1)' && ./configure \ --host='$(TARGET)' \ --disable-shared \ |