aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/Makefile.template
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-09-23 18:32:26 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-09-23 18:32:26 +0200
commit6dad9b0821f7ad089715e77f5c80ae664e4966da (patch)
treeeb59c0244ac432587a87c337d6e17d23d8f88131 /templates/Makefile.template
parent7f9fd016f62b6e22bbaab4eaa43eaab1e629e18f (diff)
Fixing Makefile issue which would re-evaluate the base path for included dependency files.
Diffstat (limited to 'templates/Makefile.template')
-rw-r--r--templates/Makefile.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/Makefile.template b/templates/Makefile.template
index 49c2f8b7f5..bf3f850fd2 100644
--- a/templates/Makefile.template
+++ b/templates/Makefile.template
@@ -65,7 +65,7 @@
endif
- MAKEFILE_PATH = $(abspath $(lastword $(MAKEFILE_LIST)))
+ MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
ifndef BUILDDIR
BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
else