Skip to content
Snippets Groups Projects
Commit 4831d02c authored by Stanley Cheung's avatar Stanley Cheung
Browse files

Merge pull request #3432 from nicolasnoble/gnu-make-grah

Fixing Makefile issue which would re-evaluate the base path for included dependency files.
parents 7f9fd016 6dad9b08
Branches
Tags release-0_11_1
No related merge requests found
...@@ -49,7 +49,7 @@ SYSTEM = MINGW32 ...@@ -49,7 +49,7 @@ SYSTEM = MINGW32
endif endif
   
   
MAKEFILE_PATH = $(abspath $(lastword $(MAKEFILE_LIST))) MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
ifndef BUILDDIR ifndef BUILDDIR
BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH))) BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
else else
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
endif endif
MAKEFILE_PATH = $(abspath $(lastword $(MAKEFILE_LIST))) MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
ifndef BUILDDIR ifndef BUILDDIR
BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH))) BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment