From ea4525e7802b318aeaa8cdc48cae10dc966e835a Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Tue, 23 Oct 2007 20:22:25 +0000 Subject: [PATCH] this update to Makefile corrects how ast_expr2f.c should be generated git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@86881 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/Makefile b/main/Makefile index dd2c97e405..10353da39f 100644 --- a/main/Makefile +++ b/main/Makefile @@ -106,6 +106,8 @@ ast_expr2.c ast_expr2.h: ast_expr2f.c: flex -o $@ --full ast_expr2.fl + sed 's@free( (char \*) ptr );@if(ptr) free( (char *) ptr );@' ast_expr2f.c > zz + mv zz ast_expr2f.c testexpr2: ast_expr2f.c ast_expr2.c ast_expr2.h $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2f.c