summaryrefslogtreecommitdiff
path: root/agi
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2011-08-17 19:30:50 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2011-08-17 19:30:50 +0000
commit318f0f55146c127ae7404b606454d23fe9752d01 (patch)
treee2f25214b719578b31f91fd53ae8874b86450fb1 /agi
parentc38cb9586377120b2aea5651b4df025cee315b60 (diff)
Merged revisions 332369 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r332369 | tilghman | 2011-08-17 14:24:59 -0500 (Wed, 17 Aug 2011) | 17 lines Merged revisions 332355 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r332355 | tilghman | 2011-08-17 14:21:36 -0500 (Wed, 17 Aug 2011) | 10 lines Re-add support for spaces in pathnames, including now spaces in DESTDIR. This was initially added to 1.8 prior to release, primarily to support the standard paths on Mac OS X, but was partially reverted recently in Subversion, due to the lack of support for spaces in DESTDIR. This commit restores support for the standard paths on Mac OS X, and also includes support for spaces in DESTDIR. (closes issue ASTERISK-18290) Reported by: pabelanger Review: https://reviewboard.asterisk.org/r/1326/ ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@332388 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'agi')
-rw-r--r--agi/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/agi/Makefile b/agi/Makefile
index 9be10001c..fd5219f77 100644
--- a/agi/Makefile
+++ b/agi/Makefile
@@ -40,11 +40,11 @@ eagi-test: eagi-test.o strcompat.o
eagi-sphinx-test: eagi-sphinx-test.o
install: all
- $(INSTALL) -d $(DESTDIR)$(AGI_DIR)
- for x in $(AGIS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(AGI_DIR) ; done
+ $(INSTALL) -d "$(DESTDIR)$(AGI_DIR)"
+ for x in $(AGIS); do $(INSTALL) -m 755 $$x "$(DESTDIR)$(AGI_DIR)" ; done
uninstall:
- for x in $(AGIS); do rm -f $(DESTDIR)$(AGI_DIR)/$$x ; done
+ for x in $(AGIS); do rm -f "$(DESTDIR)$(AGI_DIR)/$$x" ; done
clean:
rm -f *.so *.o look eagi-test eagi-sphinx-test