aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2015-02-06 17:53:09 +0800
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-02-09 11:46:27 +1100
commit4e60baa269007715c1ff81acf0fc1a94ee19a3f1 (patch)
tree88fd083745bbc52b29371842b59287557afd561d /libc
parent5c70f1c764abeec7c29171285ec90af3318b113d (diff)
downloadskiboot-4e60baa269007715c1ff81acf0fc1a94ee19a3f1.zip
skiboot-4e60baa269007715c1ff81acf0fc1a94ee19a3f1.tar.gz
skiboot-4e60baa269007715c1ff81acf0fc1a94ee19a3f1.tar.bz2
Fix commit 16c80346
Commit 16c80346 change included some reverts of previous commits, which we need. This change reverts those reverts, leaving the original intent of that change. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libc')
-rw-r--r--libc/test/Makefile.check13
1 files changed, 11 insertions, 2 deletions
diff --git a/libc/test/Makefile.check b/libc/test/Makefile.check
index f37fe93..eb6fac8 100644
--- a/libc/test/Makefile.check
+++ b/libc/test/Makefile.check
@@ -57,6 +57,15 @@ $(LIBC_DUALLIB_TEST:%=%-gcov-test.o): %-gcov-test.o : %-test.c %
clean: libc-test-clean
libc-test-clean:
- $(RM) -f libc/test/*.[od] $(LIBC_TEST) $(LIBC_TEST:%=%-gcov)
- $(RM) -f $(LIBC_DUALLIB_TEST) $(LIBC_DUALLIB_TEST:%=%-gcov) \
+ $(RM) -f libc/test/*.[od]
+ $(RM) -f $(LIBC_TEST) \
+ $(LIBC_TEST:%=%-gcov) \
+ $(LIBC_TEST:%=%.gcda) \
+ $(LIBC_TEST:%=%.gcno)
+ $(RM) -f $(LIBC_DUALLIB_TEST) \
+ $(LIBC_DUALLIB_TEST:%=%-gcov) \
+ $(LIBC_DUALLIB_TEST:%=%-gcov.gcda) \
+ $(LIBC_DUALLIB_TEST:%=%-gcov.gcno) \
+ $(LIBC_DUALLIB_TEST:%=%-gcov-test.gcda) \
+ $(LIBC_DUALLIB_TEST:%=%-gcov-test.gcno) \
$(LIBC_DUALLIB_TEST:%=%-test.o)