Skip to content

Commit

Permalink
Merge pull request grpc#3432 from nicolasnoble/gnu-make-grah
Browse files Browse the repository at this point in the history
Fixing Makefile issue which would re-evaluate the base path for included dependency files.
  • Loading branch information
stanley-cheung committed Sep 23, 2015
2 parents 7f9fd01 + 6dad9b0 commit 4831d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ SYSTEM = MINGW32
endif


MAKEFILE_PATH = $(abspath $(lastword $(MAKEFILE_LIST)))
MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
ifndef BUILDDIR
BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
else
Expand Down
2 changes: 1 addition & 1 deletion templates/Makefile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4831d02

Please sign in to comment.