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 |
@@ -106,7 +106,7 @@ |
4 |
t-test149$(EXEEXT) t-test150$(EXEEXT) t-test151$(EXEEXT) \ |
5 |
t-test152$(EXEEXT) t-test153$(EXEEXT) t-signperf$(EXEEXT) \ |
6 |
t-verifyperf$(EXEEXT) $(am__EXEEXT_1) t-cleanup$(EXEEXT) |
7 |
-@ALL_SYMBOLS_TRUE@am__append_6 = t-test49 t-test113 t-test118 |
8 |
+@ALL_SYMBOLS_TRUE@am__append_6 = t-test113 t-test118 |
9 |
@GCOV_ONLY_TRUE@am__append_7 = *.gcov *.gcno *.gcda *.bb *.bbg *.da .gcov-files |
10 |
@LCOV_TRUE@am__append_8 = *.info .prepare-lcov .info-files *.gcno *.gcda |
11 |
@GPROF_TRUE@am__append_9 = *.prof gmon.out *.gmon |
12 |
@@ -124,7 +124,7 @@ |
13 |
CONFIG_HEADER = $(top_builddir)/build-config.h |
14 |
CONFIG_CLEAN_FILES = |
15 |
CONFIG_CLEAN_VPATH_FILES = |
16 |
-@ALL_SYMBOLS_TRUE@am__EXEEXT_1 = t-test49$(EXEEXT) t-test113$(EXEEXT) \ |
17 |
+@ALL_SYMBOLS_TRUE@am__EXEEXT_1 = t-test113$(EXEEXT) \ |
18 |
@ALL_SYMBOLS_TRUE@ t-test118$(EXEEXT) |
19 |
am_t_cleanup_OBJECTS = t-cleanup.$(OBJEXT) |
20 |
t_cleanup_OBJECTS = $(am_t_cleanup_OBJECTS) |
21 |
@@ -952,7 +952,7 @@ |
22 |
$(t_test39_SOURCES) $(t_test40_SOURCES) $(t_test41_SOURCES) \ |
23 |
$(t_test42_SOURCES) $(t_test43_SOURCES) $(t_test44_SOURCES) \ |
24 |
$(t_test45_SOURCES) $(t_test46_SOURCES) $(t_test47_SOURCES) \ |
25 |
- $(t_test48_SOURCES) $(t_test49_SOURCES) $(t_test50_SOURCES) \ |
26 |
+ $(t_test48_SOURCES) $(t_test50_SOURCES) \ |
27 |
$(t_test51_SOURCES) $(t_test52_SOURCES) $(t_test53_SOURCES) \ |
28 |
$(t_test54_SOURCES) $(t_test55_SOURCES) $(t_test56_SOURCES) \ |
29 |
$(t_test57_SOURCES) $(t_test58_SOURCES) $(t_test59_SOURCES) \ |
30 |
@@ -1006,7 +1006,7 @@ |
31 |
$(t_test39_SOURCES) $(t_test40_SOURCES) $(t_test41_SOURCES) \ |
32 |
$(t_test42_SOURCES) $(t_test43_SOURCES) $(t_test44_SOURCES) \ |
33 |
$(t_test45_SOURCES) $(t_test46_SOURCES) $(t_test47_SOURCES) \ |
34 |
- $(t_test48_SOURCES) $(t_test49_SOURCES) $(t_test50_SOURCES) \ |
35 |
+ $(t_test48_SOURCES) $(t_test50_SOURCES) \ |
36 |
$(t_test51_SOURCES) $(t_test52_SOURCES) $(t_test53_SOURCES) \ |
37 |
$(t_test54_SOURCES) $(t_test55_SOURCES) $(t_test56_SOURCES) \ |
38 |
$(t_test57_SOURCES) $(t_test58_SOURCES) $(t_test59_SOURCES) \ |
39 |
@@ -1049,8 +1049,10 @@ |
40 |
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ |
41 |
END { for (dir in files) print dir, files[dir] }' |
42 |
am__base_list = \ |
43 |
- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ |
44 |
- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' |
45 |
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\ |
46 |
+/ /g' | \ |
47 |
+ sed '$$!N;$$!N;$$!N;$$!N;s/\ |
48 |
+/ /g' |
49 |
am__uninstall_files_from_dir = { \ |
50 |
test -z "$$files" \ |
51 |
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ |
52 |
@@ -2782,16 +2784,19 @@ |
53 |
@LCOV_TRUE@description.txt: $(check_PROGRAMS) $(check_SCRIPTS) |
54 |
@LCOV_TRUE@ rm -f $@ |
55 |
@LCOV_TRUE@ for i in $(check_PROGRAMS); do \ |
56 |
-@LCOV_TRUE@ testname=$${i/t-}; \ |
57 |
-@LCOV_TRUE@ testname=$${testname//-/_}; \ |
58 |
+@LCOV_TRUE@ testname=$${i#t-}; \ |
59 |
+@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ |
60 |
@LCOV_TRUE@ fgrep '***' $$i.c | tail -n 1 | \ |
61 |
-@LCOV_TRUE@ (echo $${testname} ; sed -e 's/[^*]*\*\*\*\(.*\)\\n.*/\t\1\n/g' ) >> $@; \ |
62 |
+@LCOV_TRUE@ (echo $${testname} ; sed -e 's/[^*]*\*\*\*\(.*\)\\ |
63 |
+@LCOV_TRUE@.*/ \1\ |
64 |
+@LCOV_TRUE@/g' ) >> $@; \ |
65 |
@LCOV_TRUE@ done |
66 |
@LCOV_TRUE@ for i in $(check_SCRIPTS); do \ |
67 |
-@LCOV_TRUE@ testname=$${i/t-}; \ |
68 |
-@LCOV_TRUE@ testname=$${testname//-/_}; \ |
69 |
+@LCOV_TRUE@ testname=$${i#t-}; \ |
70 |
+@LCOV_TRUE@ testname=$$(echo $${testname} | sed -e 's/-/_/g'); \ |
71 |
@LCOV_TRUE@ grep '^#' $$i | tail -n 1 | \ |
72 |
-@LCOV_TRUE@ (echo $${testname} ; sed -e 's/^# \(.*\)/\t\1\n/g' ) >> $@; \ |
73 |
+@LCOV_TRUE@ (echo $${testname} ; sed -e 's/^# \(.*\)/ \1\ |
74 |
+@LCOV_TRUE@/g' ) >> $@; \ |
75 |
@LCOV_TRUE@ done |
76 |
|
77 |
@LCOV_TRUE@description.html: description.txt |