diff src/devil.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 772f74fbd0d7
line wrap: on
line diff
--- a/src/devil.mk	Tue Feb 16 04:07:12 2010 +0100
+++ b/src/devil.mk	Tue Feb 16 04:12:53 2010 +0100
@@ -20,9 +20,9 @@
 endef
 
 define $(PKG)_BUILD
-    $(SED) 's,__declspec(dllimport),,' -i '$(1)/include/IL/il.h'
+    $(SED) -i 's,__declspec(dllimport),,' '$(1)/include/IL/il.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 \