summaryrefslogtreecommitdiff
path: root/docs/adding-packages-auto.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/adding-packages-auto.txt')
-rw-r--r--docs/adding-packages-auto.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/adding-packages-auto.txt b/docs/adding-packages-auto.txt
index ac52c395f..9af8c6ae9 100644
--- a/docs/adding-packages-auto.txt
+++ b/docs/adding-packages-auto.txt
@@ -13,7 +13,7 @@ package, with an example:
01: # This file is part of the OpenADK project. OpenADK is copyrighted
02: # material, please see the LICENCE file in the top-level directory.
03:
-04: include ${TOPDIR}/rules.mk
+04: include ${ADK_TOPDIR}/rules.mk
05:
06: PKG_NAME:= libfoo
07: PKG_VERSION:= 1.0
@@ -26,7 +26,7 @@ package, with an example:
14: PKG_URL:= http://www.libfoo.org/
15: PKG_SITES:= http://downloads.libfoo.org/
16:
-17: include ${TOPDIR}/mk/package.mk
+17: include ${ADK_TOPDIR}/mk/package.mk
18:
19: $(eval $(call PKG_template,LIBFOO,libfoo,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
20:
@@ -34,7 +34,7 @@ package, with an example:
22: ${INSTALL_DIR} ${IDIR_LIBFOO}/usr/lib
23: ${CP} ${WRKINST}/usr/lib/libfoo.so* ${IDIR_LIBFOO}/usr/lib
24:
-25: include ${TOPDIR}/mk/pkg-bottom.mk
+25: include ${ADK_TOPDIR}/mk/pkg-bottom.mk
------------------------