diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-29 09:05:07 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-29 09:05:07 +0100 |
commit | ede0b881160024db41b69198207a3e9905eea6c9 (patch) | |
tree | 0628017e3e8f8413227e7d309cb4169042fd23c6 /package | |
parent | 2f5fd9680065f15ebb6a3962d9bfac89f383db9a (diff) |
cygwin fixes
Diffstat (limited to 'package')
-rw-r--r-- | package/MesaLib/Makefile | 3 | ||||
-rw-r--r-- | package/ncurses/Makefile | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/package/MesaLib/Makefile b/package/MesaLib/Makefile index b5e9d119f..e207dac9b 100644 --- a/package/MesaLib/Makefile +++ b/package/MesaLib/Makefile @@ -35,6 +35,9 @@ endif ifeq ($(ADK_HOST_OPENBSD),y) PYTHON:=/usr/local/bin/python2.7 endif +ifeq ($(ADK_HOST_CYGWIN),y) +PYTHON:=/usr/bin/python2.7 +endif ifeq (${ADK_TARGET_SYSTEM_IBM_X40},y) DRI_DRIVERS:=i915 diff --git a/package/ncurses/Makefile b/package/ncurses/Makefile index 2455c9a2f..2453064f5 100644 --- a/package/ncurses/Makefile +++ b/package/ncurses/Makefile @@ -83,7 +83,8 @@ libncurses-install: ${IDIR_LIBNCURSES}/usr/lib for ti in rxvt rxvt-unicode; do \ TERMINFO=${WRKINST}/usr/share/terminfo \ - tic -x ./files/$$ti.ti; \ + PATH=$(HOST_PATH) \ + tic$(EXEEXT) -x ./files/$$ti.ti; \ done ifeq (${ADK_PACKAGE_LIBNCURSES_FULL_TERMINFO},y) ${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/share |