diff options
author | Tomas Chvatal <tchvatal@suse.cz> | 2012-12-10 10:41:35 +0100 |
---|---|---|
committer | Tomáš Chvátal <tchvatal@suse.cz> | 2013-01-10 15:54:48 +0100 |
commit | f0fd3bd8f8a13f6cbe2a27018b83eee24a694c09 (patch) | |
tree | 98743b89a2b388cf57eb196d5070b8862b45a7bf /solenv | |
parent | 9299707ce09077f10c49ec836e26f6197ed20a1a (diff) |
Add configure switch that allows hardlink deliver
This switch just makes possible to configure in ln delivery instead of
cp based one.
The feature was already in the place, we just make it visible as
configure option now.
Change-Id: I778ef3b03e6b9a57057e66ff6307e7da46bcd935
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/gbuild.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 321d42cf419a..173222f7f841 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -132,6 +132,10 @@ ENABLE_DEBUGINFO_FOR := all endif endif +ifeq ($(HARDLINKDELIVER),TRUE) +gb_Deliver_HARDLINK := $(true) +endif + ifeq ($(or $(ENABLE_SYMBOLS),$(enable_symbols)),FALSE) gb_SYMBOL := $(false) else |