From c8b0628cc7dc81c0b576ff3a8d6ec8cd68c134ab Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 29 Jan 2008 17:06:43 +0000 Subject: [PATCH] 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/branches/1.4@100882 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d015bfaa27..f7909b601d 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ ASTLDFLAGS+=$(LDOPTS) # Create OPTIONS variable OPTIONS= -ASTTOPDIR:=$(shell pwd) +ASTTOPDIR:=$(shell pwd | sed -e 's/ /\\ /g') # Overwite config files on "make samples" OVERWRITE=y