From e8d520de0e20d8be36444f6094b9b6ab3a24ce06 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 25 Jun 2010 19:24:01 +0000 Subject: [PATCH] Merged revisions 272533 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r272533 | tilghman | 2010-06-25 14:17:16 -0500 (Fri, 25 Jun 2010) | 2 lines Symlink sounds files, to save disk space, when multiple tarballs/checkouts are on the same system. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@272556 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- sounds/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sounds/Makefile b/sounds/Makefile index 0d1adeb81e..f0beabd3c4 100644 --- a/sounds/Makefile +++ b/sounds/Makefile @@ -82,7 +82,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) @@ -98,7 +98,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 -- 2.47.2