error out on local builds when those where explicitly disabled
This commit is contained in:
parent
508b7caddf
commit
674e799f60
1 changed files with 5 additions and 0 deletions
|
@ -28,6 +28,11 @@ endif
|
|||
endif
|
||||
|
||||
ifneq ($(gb_LOCALBUILDDIR),)
|
||||
|
||||
ifneq ($(gb_DISABLELOCALBUILD),)
|
||||
$(error This is requesting a local build. This scenario has been disable because the environment is not correctly setup for it.)
|
||||
endif
|
||||
|
||||
.PHONY : setuplocal
|
||||
setuplocal :
|
||||
mkdir -p $(OUTDIR) $(WORKDIR)
|
||||
|
|
Loading…
Reference in a new issue