summaryrefslogtreecommitdiffstats
path: root/src/pdflib_lite.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-02-16 03:12:53 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-02-16 03:12:53 (GMT)
commite1ab4466ff074344814fdb36c8c9d7acf08b2000 (patch)
tree1e2ad25cbda6d1c48f9e0586a93e2b92c0f27246 /src/pdflib_lite.mk
parent18316ec7d018eb15683c7a8b316351d83b3a1495 (diff)
downloadmxe-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/pdflib_lite.mk')
-rw-r--r--src/pdflib_lite.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdflib_lite.mk b/src/pdflib_lite.mk
index 27318e3..14db3cf 100644
--- a/src/pdflib_lite.mk
+++ b/src/pdflib_lite.mk
@@ -19,7 +19,7 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- $(SED) 's,ac_sys_system=`uname -s`,ac_sys_system=MinGW,' -i '$(1)/configure'
+ $(SED) -i 's,ac_sys_system=`uname -s`,ac_sys_system=MinGW,' '$(1)/configure'
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
@@ -34,7 +34,7 @@ define $(PKG)_BUILD
--enable-cxx \
--enable-large-files \
CFLAGS='-D_IOB_ENTRIES=20'
- $(SED) 's,-DPDF_PLATFORM=[^ ]* ,,' -i '$(1)/config/mkcommon.inc'
+ $(SED) -i 's,-DPDF_PLATFORM=[^ ]* ,,' '$(1)/config/mkcommon.inc'
$(MAKE) -C '$(1)/libs' -j '$(JOBS)'
$(MAKE) -C '$(1)/libs' -j 1 install
endef