diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2018-01-04 21:51:27 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2018-01-04 21:51:39 +0100 |
commit | 4c2e687fe70c103e4a82ca6fb3d1bb917c1fd96f (patch) | |
tree | 35eba2f2c591a05f2f378e7b690ea2775b6e21e8 /package | |
parent | ea4cdfb23149667c353f3dce278e02ca4dbb926d (diff) |
lynx: fix cross-compile on Darwin, quote HOST_CC
Diffstat (limited to 'package')
-rw-r--r-- | package/lynx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/lynx/Makefile b/package/lynx/Makefile index 9ddd4657e..8a1e2b2af 100644 --- a/package/lynx/Makefile +++ b/package/lynx/Makefile @@ -5,7 +5,7 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= lynx PKG_VERSION:= 2.8.8 -PKG_RELEASE:= 2 +PKG_RELEASE:= 3 PKG_HASH:= 234c9dc77d4c4594ad6216d7df4d49eae3019a3880e602f39721b35b97fbc408 PKG_DESCR:= text browser PKG_SECTION:= app/browser @@ -76,7 +76,7 @@ CONFIGURE_ARGS+= --disable-warnings \ --with-screen=ncurses \ --disable-widec \ --disable-locale-charset \ - --with-build-cc=$(HOST_CC) \ + --with-build-cc='$(HOST_CC)' \ --with-build-cflags="$(HOST_CFLAGS)" \ --with-build-cppflags="-I/usr/include/ncurses" MAKE_FILE:= makefile |