diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-01 11:02:37 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-01 11:02:37 +0100 |
commit | 43e87c966aefd31aafc8f24db4b2fc6670479467 (patch) | |
tree | 08746137e6ca6d3a6ffe744b303a7d95c9cd1e15 /tools/flex | |
parent | 2fd806c5ba3e9a3b0a1e32f4e43d072368c07737 (diff) |
another fix to PATH evaluation
Diffstat (limited to 'tools/flex')
-rw-r--r-- | tools/flex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/flex/Makefile b/tools/flex/Makefile index 371a7564e..023b6a40c 100644 --- a/tools/flex/Makefile +++ b/tools/flex/Makefile @@ -14,7 +14,7 @@ include ../rules.mk install: ${STAGING_HOST_DIR}/usr/bin/flex $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared - (cd ${WRKBUILD}; PATH="$(STAGING_DIR_HOST)/usr/bin:$PATH" ./configure) + (cd ${WRKBUILD}; PATH="$(STAGING_DIR_HOST)/usr/bin:$$PATH" ./configure) ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' touch $@ |