diff options
author | UnicronNL <UnicronNL@users.noreply.github.com> | 2014-08-25 17:22:20 +0200 |
---|---|---|
committer | Kim Hagen <khagen@multi-development.com> | 2014-08-25 17:30:43 +0200 |
commit | 27cf2ad45c843c08c4cd180f69611744391b1734 (patch) | |
tree | 0f12097f417de5ea61336a8ddf1fc4e34a6e4640 /Make.rules | |
parent | d6716dd0fc5af1179fc70c6fef4123b1af8906e8 (diff) | |
download | vyos-opennhrp-27cf2ad45c843c08c4cd180f69611744391b1734.tar.gz vyos-opennhrp-27cf2ad45c843c08c4cd180f69611744391b1734.zip |
Rename build variable, was conflicting with Jenkins
Diffstat (limited to 'Make.rules')
-rw-r--r-- | Make.rules | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -3,7 +3,7 @@ all: compile -ifndef build +ifndef srcbuild toplevelrun:=yes @@ -78,7 +78,7 @@ LDFLAGS_ALL += $(LDFLAGS) export CC LD INSTALL INSTALLDIR CFLAGS_ALL LDFLAGS_ALL -build := +srcbuild := endif @@ -91,15 +91,15 @@ endif src := obj := -src += $(build) -obj := $(build) +src += $(srcbuild) +obj := $(srcbuild) ## # Include directory specific stuff -ifneq ($(build),) -$(build)/Makefile: ; -include $(build)/Makefile +ifneq ($(srcbuild),) +$(srcbuild)/Makefile: ; +include $(srcbuild)/Makefile endif ## @@ -243,7 +243,7 @@ endif # Top level rules. %/: FORCE - $(Q)$(MAKE) -f Make.rules build=$(build-dir) $(MAKECMDGOALS) + $(Q)$(MAKE) -f Make.rules srcbuild=$(build-dir) $(MAKECMDGOALS) compile: $(targets) @: |