diff options
author | SVN Migration <svn@php.net> | 2003-08-07 17:42:03 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-08-07 17:42:03 +0000 |
commit | ba4234eb6d680e4d28d0e5abb644cb14b4d128f5 (patch) | |
tree | fe4f38606f372df1ba52b38c7d7bd0a3289f78b7 /build | |
parent | 6ff7c1cedf205df70e909780288b00aa215e4c86 (diff) | |
download | php-git-php-4.3.3RC3.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_4_3_3RC3'.php-4.3.3RC3
Diffstat (limited to 'build')
-rw-r--r-- | build/scan_makefile_in.awk | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/build/scan_makefile_in.awk b/build/scan_makefile_in.awk deleted file mode 100644 index 0c6d20398f..0000000000 --- a/build/scan_makefile_in.awk +++ /dev/null @@ -1,32 +0,0 @@ -BEGIN { - mode=0 - sources="" -} - -mode == 0 && /^LTLIBRARY_SOURCES.*\\$/ { - if (match($0, "[^=]*$")) { - sources=substr($0, RSTART, RLENGTH-1) - } - mode=1 - next -} - -mode == 0 && /^LTLIBRARY_SOURCES.*/ { - if (match($0, "[^=]*$")) { - sources=substr($0, RSTART, RLENGTH) - } -} - -mode == 1 && /.*\\$/ { - sources=sources substr($0, 0, length - 1) - next -} - -mode == 1 { - sources=sources $0 - mode=0 -} - -END { - print sources -} |