diff src/pdflib_lite.mk @ 759:bf4bcb3370fa

changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 16 Feb 2010 04:12:53 +0100
parents 29f1ba4559ae
children b25fa06ca36f
line wrap: on
line diff
--- a/src/pdflib_lite.mk	Tue Feb 16 04:07:12 2010 +0100
+++ b/src/pdflib_lite.mk	Tue Feb 16 04:12:53 2010 +0100
@@ -19,7 +19,7 @@
 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 @@
         --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