blob: a1f0735dda2a1aebe48e5801fa9557e9879c12c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
diff -Naur perl-5.6.1.orig/makedepend.SH perl-5.6.1/makedepend.SH
--- perl-5.6.1.orig/makedepend.SH 2001-03-19 07:33:17.000000000 +0000
+++ perl-5.6.1/makedepend.SH 2002-05-27 02:27:08.000000000 +0000
@@ -141,6 +141,8 @@
$cppstdin $finc -I. $cppflags $cppminus <UU/$file.c |
$sed \
-e '/^#.*<stdin>/d' \
+ -e '/^#.*<built-in>/d' \
+ -e '/^#.*<command line>/d' \
-e '/^#.*"-"/d' \
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
-e 's/^[ ]*#[ ]*line/#/' \
@@ -155,6 +157,8 @@
$sed \
-e '1d' \
-e '/^#.*<stdin>/d' \
+ -e '/^#.*<built-in>/d' \
+ -e '/^#.*<command line>/d' \
-e '/^#.*"-"/d' \
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
-e 's/^[ ]*#[ ]*line/#/' \
|