From e2b1607f1143d21ddd597b856ff21e5b326455de Mon Sep 17 00:00:00 2001 From: Xiangfu Date: Wed, 19 Sep 2012 22:36:52 +0800 Subject: [PATCH] libs: remove all files when uninstall --- libs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Makefile b/libs/Makefile index d5fd527..b0dc933 100644 --- a/libs/Makefile +++ b/libs/Makefile @@ -61,4 +61,4 @@ install: all uninstall: for f in $(DYNAMIC_HEADS); do rm -f $(DESTDIR)/$(PREFIX)/include/$$f || exit 1; done - for f in $(DYNAMIC_LIBS); do rm -f $(DESTDIR)/$(PREFIX)/lib/$$f || exit 1; done + for f in $(DYNAMIC_LIBS); do rm -f $(DESTDIR)/$(PREFIX)/lib/$$f* || exit 1; done