From: Russell Bryant Date: Tue, 29 Jan 2008 17:16:34 +0000 (+0000) Subject: Merged revisions 100882 via svnmerge from X-Git-Tag: 1.6.0-beta3~2^2~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33cf48f436c0be0acc18bf11aa6d301c002a2232;p=thirdparty%2Fasterisk.git 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 ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@100900 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile b/Makefile index a1417ba9fc..96d168b48d 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ ASTLDFLAGS+=$(LDOPTS) #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