From 93f71a4333c0b889d44e4e0e60ceb706de04dafa Mon Sep 17 00:00:00 2001 From: Chris Fiege Date: Sat, 29 Jun 2019 19:59:26 +0200 Subject: [PATCH] doc/dev/package: Fix path to gluon.mk $(TOPDIR) does not contain a trailing slash. Thus the 'gluon.mk'-include must include the trailing slash. (Just like the link to $(INCLUDE_DIR)/package.mk does.) Signed-off-by: Chris Fiege --- docs/dev/packages.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/packages.rst b/docs/dev/packages.rst index 42173cec..a527aad4 100644 --- a/docs/dev/packages.rst +++ b/docs/dev/packages.rst @@ -10,7 +10,7 @@ Gluon package makefiles As many packages share the same or a similar structure, Gluon provides a ``package/gluon.mk`` that can be included for common definitions. This file replaces OpenWrt's ``$(INCLUDE_DIR)/package.mk``; it is usually included as ``include ../gluon.mk`` from Gluon core packages, or as -``include $(TOPDIR)../package/gluon.mk`` from feeds. +``include $(TOPDIR)/../package/gluon.mk`` from feeds. Provided macros ***************