summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-11-08 20:21:35 +0000
committerfoobar <sniper@php.net>2005-11-08 20:21:35 +0000
commitb947d6b0d3a6eefa5136f85e1cebf266b50f6cdc (patch)
tree6720f5348e80060255c4dd9961aa41fa7b3afeb6
parent2434baffdb23c93437f81f988dffc0874584d67b (diff)
downloadphp-git-b947d6b0d3a6eefa5136f85e1cebf266b50f6cdc.tar.gz
More files to have #line directives stripped for release
-rwxr-xr-xgenfiles9
1 files changed, 8 insertions, 1 deletions
diff --git a/genfiles b/genfiles
index f9f2d48fe1..ff10d9d0d8 100755
--- a/genfiles
+++ b/genfiles
@@ -6,7 +6,14 @@ STD='make -f Makefile.frag LEX="flex -L" YACC="bison -y -l" srcdir=Zend builddir
set -x
-for f in ext/date/lib/parse_date.c ext/standard/url_scanner_ex.c ext/standard/var_unserializer.c; do
+CLEANUP_FILES=" \
+ ext/pdo/pdo_sql_parser.c \
+ ext/date/lib/parse_date.c \
+ ext/standard/url_scanner_ex.c \
+ ext/standard/var_unserializer.c \
+"
+
+for f in $CLEANUP_FILES; do
cp $f $f.orig
grep -v '#line ' $f.orig > $f
done