diff options
author | foobar <sniper@php.net> | 2005-11-08 20:21:35 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-11-08 20:21:35 +0000 |
commit | b947d6b0d3a6eefa5136f85e1cebf266b50f6cdc (patch) | |
tree | 6720f5348e80060255c4dd9961aa41fa7b3afeb6 | |
parent | 2434baffdb23c93437f81f988dffc0874584d67b (diff) | |
download | php-git-b947d6b0d3a6eefa5136f85e1cebf266b50f6cdc.tar.gz |
More files to have #line directives stripped for release
-rwxr-xr-x | genfiles | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 |