mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
21 lines
459 B
Bash
Executable File
21 lines
459 B
Bash
Executable File
#! /bin/sh
|
|
|
|
STD='make -f Makefile.frag LEX="flex -L" YACC="bison -y -l" srcdir=Zend builddir=Zend'
|
|
|
|
(eval "$STD Zend/zend_language_parser.c Zend/zend_language_scanner.c Zend/zend_ini_parser.c Zend/zend_ini_scanner.c")
|
|
|
|
set -x
|
|
|
|
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
|
|
|