From 5e9c36e859183cf8391059c531e1cecfda55a337 Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Sat, 10 May 2008 01:35:30 +0000 Subject: [PATCH] Do not expand BASE variable while creating Makefiles for modules (so you can actually move the freeswitch source around after a build) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8346 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- build/modmake.rules.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/modmake.rules.in b/build/modmake.rules.in index 9d037acf50..90637937d6 100644 --- a/build/modmake.rules.in +++ b/build/modmake.rules.in @@ -93,7 +93,7 @@ Makefile: @if test ! -f $@; then \ if ! pwd | grep $(switch_srcdir)/src/mod ; then rulesdir=$(switch_srcdir) ; else rulesdir=../../../.. ; fi ; \ echo BASE=$$rulesdir > Makefile ; \ - echo "include $(BASE)/build/modmake.rules" >> Makefile ; \ + echo 'include $(BASE)/build/modmake.rules' >> Makefile ; \ fi ; $(CURLLA):