summaryrefslogtreecommitdiffstats
path: root/src/freeglut.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/freeglut.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/freeglut.mk')
-rw-r--r--src/freeglut.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/freeglut.mk b/src/freeglut.mk
index 62937fe..7a8a2f1 100644
--- a/src/freeglut.mk
+++ b/src/freeglut.mk
@@ -21,10 +21,10 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- $(SED) 's,Windows\.h,windows.h,' -i '$(1)/src/freeglut_internal.h'
- $(SED) 's,WindowsX\.h,windowsx.h,' -i '$(1)/src/freeglut_internal.h'
- $(SED) 's,MMSystem\.h,mmsystem.h,' -i '$(1)/src/freeglut_internal.h'
- $(SED) 's,Windows\.h,windows.h,' -i '$(1)/include/GL/freeglut_std.h'
+ $(SED) -i 's,Windows\.h,windows.h,' '$(1)/src/freeglut_internal.h'
+ $(SED) -i 's,WindowsX\.h,windowsx.h,' '$(1)/src/freeglut_internal.h'
+ $(SED) -i 's,MMSystem\.h,mmsystem.h,' '$(1)/src/freeglut_internal.h'
+ $(SED) -i 's,Windows\.h,windows.h,' '$(1)/include/GL/freeglut_std.h'
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \