summaryrefslogtreecommitdiffstats
path: root/src/fltk.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk.mk')
-rw-r--r--src/fltk.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fltk.mk b/src/fltk.mk
index 3dbe81c..51c15be 100644
--- a/src/fltk.mk
+++ b/src/fltk.mk
@@ -19,15 +19,15 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- $(SED) 's,\$$uname,MINGW,g' -i '$(1)/configure'
+ $(SED) -i 's,\$$uname,MINGW,g' '$(1)/configure'
# 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 \
--prefix='$(PREFIX)/$(TARGET)' \
--enable-threads \
LIBS='-lws2_32'
- $(SED) 's,-fno-exceptions,,' -i '$(1)/makeinclude'
+ $(SED) -i 's,-fno-exceptions,,' '$(1)/makeinclude'
$(MAKE) -C '$(1)' -j '$(JOBS)' install DIRS=src LIBCOMMAND='$(TARGET)-ar cr'
endef