diff options
author | mirabilos <tg@mirbsd.org> | 2017-07-18 17:53:28 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-07-18 18:50:00 +0200 |
commit | 797c4ecbf18c80729d782d92edba93c600d80ad6 (patch) | |
tree | b9f9cb8da236dbd0a8657b7a6df7f2879ae4c99e | |
parent | 124d7862a269838fef831593b677346cd9dd8695 (diff) |
Fix “No rule to make target '/mk/build.mk'. Stop.”
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
-rw-r--r-- | Makefile.adk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.adk b/Makefile.adk index df0d98d4c..663ab584a 100644 --- a/Makefile.adk +++ b/Makefile.adk @@ -2,7 +2,7 @@ # material, please see the LICENCE file in the top-level directory. ADK_TOPDIR:= $(shell pwd) -GMAKE_FMK= ${MAKE} -f $(PWD)/mk/build.mk +GMAKE_FMK= ${MAKE} -f ${ADK_TOPDIR}/mk/build.mk GMAKE_INV= ${GMAKE_FMK} --no-print-directory _UNLIMIT= __limit=$$(ulimit -dH 2>/dev/null); \ |