[svn-commits] tilghman: branch 1.6.2 r272556 - in /branches/1.6.2: ./ sounds/Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 25 14:24:05 CDT 2010


Author: tilghman
Date: Fri Jun 25 14:24:01 2010
New Revision: 272556

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=272556
Log:
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.
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/sounds/Makefile

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/sounds/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/sounds/Makefile?view=diff&rev=272556&r1=272555&r2=272556
==============================================================================
--- branches/1.6.2/sounds/Makefile (original)
+++ branches/1.6.2/sounds/Makefile Fri Jun 25 14:24:01 2010
@@ -82,7 +82,7 @@
 	       && 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 @@
 	       && 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
 




More information about the svn-commits mailing list