[asterisk-commits] russell: branch 1.4 r100882 -	/branches/1.4/Makefile
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Tue Jan 29 11:06:44 CST 2008
    
    
  
Author: russell
Date: Tue Jan 29 11:06:43 2008
New Revision: 100882
URL: http://svn.digium.com/view/asterisk?view=rev&rev=100882
Log:
Fix building Asterisk when the working path has spaces in it.
(closes issue #11834)
Reported by: spendergrass
Patched by: me
Modified:
    branches/1.4/Makefile
Modified: branches/1.4/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/Makefile?view=diff&rev=100882&r1=100881&r2=100882
==============================================================================
--- branches/1.4/Makefile (original)
+++ branches/1.4/Makefile Tue Jan 29 11:06:43 2008
@@ -87,7 +87,7 @@
 # Create OPTIONS variable
 OPTIONS=
 
-ASTTOPDIR:=$(shell pwd)
+ASTTOPDIR:=$(shell pwd | sed -e 's/ /\\ /g')
 
 # Overwite config files on "make samples"
 OVERWRITE=y
    
    
More information about the asterisk-commits
mailing list