From 9c7657f933e88fd5b808a7a601b6b8991fd0e9b7 Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Sat, 10 May 2008 02:32:04 +0000 Subject: [PATCH] Fix modmake.rules include path for real (yes this way s*cks, but escaping the $ does not work...) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8347 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 90637937d6..a2a4eb3285 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 $$rulesdir/build/modmake.rules" >> Makefile ; \ fi ; $(CURLLA):