summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-07-30 21:57:03 +0000
committerSVN Migration <svn@php.net>2003-07-30 21:57:03 +0000
commit2602a03c39aa8f6a976c928e515d1b2e909a2ab8 (patch)
treec255b7cdf4ef10963394495aa555aeb72f3620e1 /build
parent8caea61bd3804d34db53f327b9d452f5a3b4e94f (diff)
downloadphp-git-php-4.3.3RC2.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_4_3_3RC2'.php-4.3.3RC2
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
-}