[asterisk-commits] tilghman: branch 1.4 r242723 - in /branches/1.4: main/Makefile pbx/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Jan 24 23:33:41 CST 2010
Author: tilghman
Date: Sun Jan 24 23:33:37 2010
New Revision: 242723
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=242723
Log:
Oops, should have used CMD_PREFIX, not ECHO_PREFIX, for the commands.
Modified:
branches/1.4/main/Makefile
branches/1.4/pbx/Makefile
Modified: branches/1.4/main/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/main/Makefile?view=diff&rev=242723&r1=242722&r2=242723
==============================================================================
--- branches/1.4/main/Makefile (original)
+++ branches/1.4/main/Makefile Sun Jan 24 23:33:37 2010
@@ -101,7 +101,7 @@
ast_expr2.c ast_expr2.h:
endif
$(ECHO_PREFIX) echo " [BISON] $< -> $@"
- $(ECHO_PREFIX) bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
+ $(CMD_PREFIX) bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
ifneq ($(FLEX),)
ast_expr2f.c: ast_expr2.fl
@@ -109,9 +109,9 @@
ast_expr2f.c:
endif
$(ECHO_PREFIX) echo " [FLEX] $< -> $@"
- $(ECHO_PREFIX) flex -o $@ ast_expr2.fl # moved the correction of yyfree into the flex input file itself.
- $(ECHO_PREFIX) sed 's@#if __STDC_VERSION__ >= 199901L@#if !defined __STDC_VERSION__ || __STDC_VERSION__ >= 199901L@' ast_expr2f.c > zz
- $(ECHO_PREFIX) mv zz ast_expr2f.c
+ $(CMD_PREFIX) flex -o $@ ast_expr2.fl # moved the correction of yyfree into the flex input file itself.
+ $(CMD_PREFIX) sed 's@#if __STDC_VERSION__ >= 199901L@#if !defined __STDC_VERSION__ || __STDC_VERSION__ >= 199901L@' ast_expr2f.c > zz
+ $(CMD_PREFIX) mv zz ast_expr2f.c
ast_expr2f.o: _ASTCFLAGS+=-Wno-unused
Modified: branches/1.4/pbx/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/pbx/Makefile?view=diff&rev=242723&r1=242722&r2=242723
==============================================================================
--- branches/1.4/pbx/Makefile (original)
+++ branches/1.4/pbx/Makefile Sun Jan 24 23:33:37 2010
@@ -50,8 +50,8 @@
ael/ael_lex.c:
endif
$(ECHO_PREFIX) echo " [FLEX] $< -> $@"
- $(ECHO_PREFIX) (cd ael; flex ael.flex; sed -i -e "/begin standard C headers/i#include \"asterisk.h\"" ael_lex.c)
- $(ECHO_PREFIX) (cd ael; sed 's@#if __STDC_VERSION__ >= 199901L@#if !defined __STDC_VERSION__ || __STDC_VERSION__ >= 199901L@' ael_lex.c > zz; mv zz ael_lex.c)
+ $(CMD_PREFIX) (cd ael; flex ael.flex; sed -i -e "/begin standard C headers/i#include \"asterisk.h\"" ael_lex.c)
+ $(CMD_PREFIX) (cd ael; sed 's@#if __STDC_VERSION__ >= 199901L@#if !defined __STDC_VERSION__ || __STDC_VERSION__ >= 199901L@' ael_lex.c > zz; mv zz ael_lex.c)
ifneq ($(BISON),)
ael/ael.tab.c ael/ael.tab.h: ael/ael.y
@@ -59,7 +59,7 @@
ael/ael.tab.c ael/ael.tab.h:
endif
$(ECHO_PREFIX) echo " [BISON] $< -> $@"
- $(ECHO_PREFIX) (cd ael; bison -v -d ael.y)
+ $(CMD_PREFIX) (cd ael; bison -v -d ael.y)
dundi-parser.o: dundi-parser.h
dundi-parser.o: _ASTCFLAGS+=-I.
More information about the asterisk-commits
mailing list