Use GNU make magic instead of shell magic to escape spaces in the working directory.

(related to issue #11834)


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@100922 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2008-01-29 17:21:33 +00:00
parent c8b0628cc7
commit 2f4510988c

View File

@@ -87,7 +87,9 @@ ASTLDFLAGS+=$(LDOPTS)
# Create OPTIONS variable
OPTIONS=
ASTTOPDIR:=$(shell pwd | sed -e 's/ /\\ /g')
empty:=
space:=$(empty) $(empty)
ASTTOPDIR:=$(subst $(space),\$(space),$(CURDIR))
# Overwite config files on "make samples"
OVERWRITE=y