[asterisk-commits] russell: trunk r100928 - in /trunk: ./ Makefile

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 29 11:22:48 CST 2008


Author: russell
Date: Tue Jan 29 11:22:47 2008
New Revision: 100928

URL: http://svn.digium.com/view/asterisk?view=rev&rev=100928
Log:
Merged revisions 100922 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r100922 | russell | 2008-01-29 11:21:33 -0600 (Tue, 29 Jan 2008) | 3 lines

Use GNU make magic instead of shell magic to escape spaces in the working directory.
(related to issue #11834)

........

Modified:
    trunk/   (props changed)
    trunk/Makefile

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?view=diff&rev=100928&r1=100927&r2=100928
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Tue Jan 29 11:22:47 2008
@@ -108,7 +108,9 @@
 #Uncomment this to see all build commands instead of 'quiet' output
 #NOISY_BUILD=yes
 
-ASTTOPDIR:=$(shell echo $(CURDIR) | sed -e 's/ /\\ /g')
+empty:=
+space:=$(empty) $(empty)
+ASTTOPDIR:=$(subst $(space),\$(space),$(CURDIR))
 
 # Overwite config files on "make samples"
 OVERWRITE=y




More information about the asterisk-commits mailing list