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

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


Author: russell
Date: Tue Jan 29 11:16:34 2008
New Revision: 100900

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

........
r100882 | russell | 2008-01-29 11:06:43 -0600 (Tue, 29 Jan 2008) | 6 lines

Fix building Asterisk when the working path has spaces in it.

(closes issue #11834)
Reported by: spendergrass
Patched by: me

........

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=100900&r1=100899&r2=100900
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Tue Jan 29 11:16:34 2008
@@ -108,7 +108,7 @@
 #Uncomment this to see all build commands instead of 'quiet' output
 #NOISY_BUILD=yes
 
-ASTTOPDIR:=$(CURDIR)
+ASTTOPDIR:=$(shell echo $(CURDIR) | sed -e 's/ /\\ /g')
 
 # Overwite config files on "make samples"
 OVERWRITE=y




More information about the asterisk-commits mailing list