From 9dfaed000c0ec1890b46e5fa0bf7b8029f69b64f Mon Sep 17 00:00:00 2001 From: "Chrissi^ (Chris Fiege)" Date: Sat, 29 Jun 2019 23:41:07 +0200 Subject: [PATCH] doc/dev/package: Fix path to gluon.mk (#1774) $(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 ***************