Skip to content

Commit b947d6b

Browse files
author
foobar
committed
More files to have #line directives stripped for release
1 parent 2434baf commit b947d6b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

genfiles

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ STD='make -f Makefile.frag LEX="flex -L" YACC="bison -y -l" srcdir=Zend builddir
66

77
set -x
88

9-
for f in ext/date/lib/parse_date.c ext/standard/url_scanner_ex.c ext/standard/var_unserializer.c; do
9+
CLEANUP_FILES=" \
10+
ext/pdo/pdo_sql_parser.c \
11+
ext/date/lib/parse_date.c \
12+
ext/standard/url_scanner_ex.c \
13+
ext/standard/var_unserializer.c \
14+
"
15+
16+
for f in $CLEANUP_FILES; do
1017
cp $f $f.orig
1118
grep -v '#line ' $f.orig > $f
1219
done

0 commit comments

Comments
 (0)