summaryrefslogtreecommitdiffstats
path: root/src/ncurses.mk
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2015-09-03 08:23:53 (GMT)
committerTony Theodore <tonyt@logyst.com>2015-09-03 08:23:53 (GMT)
commita6aeeb03cfc0317233cd63621a62775bf7785341 (patch)
treed1bb20b3af211979bb5e83af009041a8966e4f9d /src/ncurses.mk
parent88c8d3aff1e4879cecda2233669a907492b3314e (diff)
downloadmxe-a6aeeb03cfc0317233cd63621a62775bf7785341.zip
mxe-a6aeeb03cfc0317233cd63621a62775bf7785341.tar.gz
mxe-a6aeeb03cfc0317233cd63621a62775bf7785341.tar.bz2
ncurses: fix TIC_PATH issue in make 3.81
fixes #806 and #807
Diffstat (limited to 'src/ncurses.mk')
-rw-r--r--src/ncurses.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ncurses.mk b/src/ncurses.mk
index f00eb73..2203ce5 100644
--- a/src/ncurses.mk
+++ b/src/ncurses.mk
@@ -29,7 +29,9 @@ define $(PKG)_BUILD
$(MAKE) -C '$(1).native/include' -j '$(JOBS)'
$(MAKE) -C '$(1).native/progs' -j '$(JOBS)' tic
- cd '$(1)' && ./configure \
+ cd '$(1)' && \
+ TIC_PATH='$(1).native/progs/tic' \
+ ./configure \
--host='$(TARGET)' \
--build="`config.guess`" \
--prefix=$(PREFIX)/$(TARGET) \
@@ -50,6 +52,5 @@ define $(PKG)_BUILD
--with-normal --without-shared --with-static, \
--without-normal --without-static --with-shared)
$(MAKE) -C '$(1)' -j '$(JOBS)'
- $(MAKE) -C '$(1)' -j 1 install TIC_PATH='$(1).native/progs/tic'
+ $(MAKE) -C '$(1)' -j 1 install
endef
-