gnumake2: fix naming for partial build vars

This commit is contained in:
Bjoern Michaelsen 2010-11-11 15:46:29 +01:00
parent 21ee80adaf
commit c667c072b8

View file

@ -33,12 +33,12 @@ WORKDIR := $(SOLARVERSION)/$(INPATH)/workdir
# if the goals do not include the targets install or uninstall we check if a
# local overlay build dir was requested. We are making an distiction between
# partitial and full builds. gb_LOCALPARTITIALBUILDDIR is only used here,
# partitial and full builds. gb_LOCALPARTIALBUILDDIR is only used here,
# later only gb_LOCALBUILDDIR is used.
ifeq ($(filter install uninstall,$(MAKECMDGOALS)),)
ifeq ($(gb_PARTITIALBUILD),$(true))
ifneq ($(gb_LOCALPARTITIALBUILDDIR),)
gb_LOCALBUILDDIR := $(gb_LOCALPARTITIALBUILDDIR)
ifeq ($(gb_PARTIALBUILD),$(true))
ifneq ($(gb_LOCALPARTIALBUILDDIR),)
gb_LOCALBUILDDIR := $(gb_LOCALPARTIALBUILDDIR)
OUTDIR := $(gb_LOCALBUILDDIR)/outdir/$(INPATH)
WORKDIR := $(gb_LOCALBUILDDIR)/workdir/$(INPATH)
else