We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2434baf commit b947d6bCopy full SHA for b947d6b
genfiles
@@ -6,7 +6,14 @@ STD='make -f Makefile.frag LEX="flex -L" YACC="bison -y -l" srcdir=Zend builddir
6
7
set -x
8
9
-for f in ext/date/lib/parse_date.c ext/standard/url_scanner_ex.c ext/standard/var_unserializer.c; do
+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
17
cp $f $f.orig
18
grep -v '#line ' $f.orig > $f
19
done
0 commit comments