diff options
author | Tony Theodore <tonyt@logyst.com> | 2015-09-03 08:23:53 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2015-09-03 08:23:53 (GMT) |
commit | a6aeeb03cfc0317233cd63621a62775bf7785341 (patch) | |
tree | d1bb20b3af211979bb5e83af009041a8966e4f9d | |
parent | 88c8d3aff1e4879cecda2233669a907492b3314e (diff) | |
download | mxe-a6aeeb03cfc0317233cd63621a62775bf7785341.zip mxe-a6aeeb03cfc0317233cd63621a62775bf7785341.tar.gz mxe-a6aeeb03cfc0317233cd63621a62775bf7785341.tar.bz2 |
ncurses: fix TIC_PATH issue in make 3.81
fixes #806 and #807
-rw-r--r-- | src/ncurses.mk | 7 |
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 - |