diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-11-11 15:46:29 +0100 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2010-11-11 15:46:29 +0100 |
commit | c667c072b83846ec8c1164c00d073744bae8304d (patch) | |
tree | ab92a441bdcf6ff29fff5566b26d61fd14321710 /solenv | |
parent | 21ee80adaf704b3c09a17a33888a3904ff2cec35 (diff) |
gnumake2: fix naming for partial build vars
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/BuildDirs.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/solenv/gbuild/BuildDirs.mk b/solenv/gbuild/BuildDirs.mk index 2e94af518eeb..307f22fb71da 100644 --- a/solenv/gbuild/BuildDirs.mk +++ b/solenv/gbuild/BuildDirs.mk @@ -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 |