Line 0
Link Here
|
|
|
1 |
--- ./libopendkim/tests/Makefile.in.orig 2013-02-26 06:06:04.000000000 +0900 |
2 |
+++ ./libopendkim/tests/Makefile.in 2013-02-26 19:58:50.000000000 +0900 |
3 |
@@ -1049,8 +1049,10 @@ |
4 |
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ |
5 |
END { for (dir in files) print dir, files[dir] }' |
6 |
am__base_list = \ |
7 |
- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ |
8 |
- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' |
9 |
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\ |
10 |
+/ /g' | \ |
11 |
+ sed '$$!N;$$!N;$$!N;$$!N;s/\ |
12 |
+/ /g' |
13 |
am__uninstall_files_from_dir = { \ |
14 |
test -z "$$files" \ |
15 |
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ |
16 |
@@ -2782,16 +2784,19 @@ |
17 |
@LCOV_TRUE@description.txt: $(check_PROGRAMS) $(check_SCRIPTS) |
18 |
@LCOV_TRUE@ rm -f $@ |
19 |
@LCOV_TRUE@ for i in $(check_PROGRAMS); do \ |
20 |
-@LCOV_TRUE@ testname=$${i/t-}; \ |
21 |
-@LCOV_TRUE@ testname=$${testname//-/_}; \ |
22 |
+@LCOV_TRUE@ testname=$${i#t-}; \ |
23 |
+@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ |
24 |
@LCOV_TRUE@ fgrep '***' $$i.c | tail -n 1 | \ |
25 |
-@LCOV_TRUE@ (echo $${testname} ; sed -e 's/[^*]*\*\*\*\(.*\)\\n.*/\t\1\n/g' ) >> $@; \ |
26 |
+@LCOV_TRUE@ (echo $${testname} ; sed -e 's/[^*]*\*\*\*\(.*\)\\ |
27 |
+@LCOV_TRUE@.*/ \1\ |
28 |
+@LCOV_TRUE@/g' ) >> $@; \ |
29 |
@LCOV_TRUE@ done |
30 |
@LCOV_TRUE@ for i in $(check_SCRIPTS); do \ |
31 |
-@LCOV_TRUE@ testname=$${i/t-}; \ |
32 |
-@LCOV_TRUE@ testname=$${testname//-/_}; \ |
33 |
+@LCOV_TRUE@ testname=$${i#t-}; \ |
34 |
+@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ |
35 |
@LCOV_TRUE@ grep '^#' $$i | tail -n 1 | \ |
36 |
-@LCOV_TRUE@ (echo $${testname} ; sed -e 's/^# \(.*\)/\t\1\n/g' ) >> $@; \ |
37 |
+@LCOV_TRUE@ (echo $${testname} ; sed -e 's/^# \(.*\)/ \1\ |
38 |
+@LCOV_TRUE@/g' ) >> $@; \ |
39 |
@LCOV_TRUE@ done |
40 |
|
41 |
@LCOV_TRUE@description.html: description.txt |