aboutsummaryrefslogtreecommitdiffstats
path: root/sounds
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-25 19:17:16 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-25 19:17:16 +0000
commit544e770531de5efcf494cd89ce83f7b1082351fd (patch)
treef4cc5323e8bdcfd7182155a43ef7ba11a7d45996 /sounds
parent682cc79c922fb9c3e38d640727c5b10c91df9050 (diff)
Symlink sounds files, to save disk space, when multiple tarballs/checkouts are on the same system.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@272533 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'sounds')
-rw-r--r--sounds/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sounds/Makefile b/sounds/Makefile
index eb638b663..087eb9620 100644
--- a/sounds/Makefile
+++ b/sounds/Makefile
@@ -83,7 +83,7 @@ $$($(1))/.asterisk-$(2)$(if $(3),-$(3),)-%: have_download
&& $$(SHA1SUM) -c --status $$$${PACKAGE}.sha1) || $(BS)
(echo "Bad checksum: $$$${PACKAGE}" 1>&2; exit 1)); $(BS)
fi; $(BS)
- cp -p $$(SOUNDS_CACHE_DIR)/$$$${PACKAGE} .; $(BS)
+ $(LN) -sf $$(SOUNDS_CACHE_DIR)/$$$${PACKAGE} .; $(BS)
fi; $(BS)
$(if $($(4)_VERSION),\
$(EMPTY) rm -f $$(subst -$$($(4)_VERSION),,$$@)-* && $(BS)
@@ -100,7 +100,7 @@ asterisk-$(1)-%.tar.gz: have_download
&& $$(SHA1SUM) -c --status $$@.sha1) || $(BS)
(echo "Bad checksum: $$@" 1>&2; exit 1)); $(BS)
fi; $(BS)
- cp -p $$(SOUNDS_CACHE_DIR)/$$@ .; $(BS)
+ $(LN) -sf $$(SOUNDS_CACHE_DIR)/$$@ .; $(BS)
fi
endef