summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-08-07 17:42:03 +0000
committerSVN Migration <svn@php.net>2003-08-07 17:42:03 +0000
commitba4234eb6d680e4d28d0e5abb644cb14b4d128f5 (patch)
treefe4f38606f372df1ba52b38c7d7bd0a3289f78b7 /build
parent6ff7c1cedf205df70e909780288b00aa215e4c86 (diff)
downloadphp-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.awk32
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
-}