diff options
author | David Tardon <dtardon@redhat.com> | 2013-04-27 09:23:09 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-04-28 16:34:22 +0200 |
commit | 488d0de6f8b691ab7cb5a5b6bfa594b1aa999909 (patch) | |
tree | 676e0dd6822dfde30ebf01ed849a7fa84501e9b7 /solenv/gbuild/gbuild.mk | |
parent | 9ed5affa51257e1bfece7fd8712acad77ad64cad (diff) |
gbuild: add var. for enabling runnable instdir
This is a part of my effort to get a runnable $(INSTDIR) as a more
convenient alternative to make dev-install. I plan to copy all necessary
shared libs, executables and other files to $(INSTDIR), which increases
the disk space demands for a build (there would be three copies of a
library/executable in the same build: one in $(WORKDIR), another in
$(OUTDIR) and one in $(INSTDIR)). Because the runnable instdir idea is
limited to Linux anyway (at least for now), it will be disabled by
default.
Change-Id: Ib61109b1a193c61c0236b50b64c34fea20f40297
Diffstat (limited to 'solenv/gbuild/gbuild.mk')
-rw-r--r-- | solenv/gbuild/gbuild.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 5e06cbbba800..c71cb40bf32c 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -275,6 +275,8 @@ gb_GLOBALDEFS += \ gb_GLOBALDEFS := $(sort $(gb_GLOBALDEFS)) +gb_RUNNABLE_INSTDIR := + include $(GBUILDDIR)/Deliver.mk $(eval $(call gb_Deliver_init)) |