diff options
author | Michael Paquier | 2012-05-27 23:47:24 +0000 |
---|---|---|
committer | Michael Paquier | 2012-05-27 23:48:24 +0000 |
commit | 4e8f58a8083df2056fbbf553fcdff958e96b768d (patch) | |
tree | 4af8ff86be30c19af1d4f4f1980aea6fb5a7792a | |
parent | 35a6dee96d84c70f4984a7dd5ea67d91d591546e (diff) |
Suppress forgotten library link in src/gtm/path for "make clean"
When invocating make clean/distclean, libgtmpath.a was still defined.
-rw-r--r-- | src/gtm/path/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtm/path/Makefile b/src/gtm/path/Makefile index 030176ce46..186b3b1876 100644 --- a/src/gtm/path/Makefile +++ b/src/gtm/path/Makefile @@ -23,7 +23,7 @@ include $(top_srcdir)/src/Makefile.shlib clean: rm -f $(OBJS) - rm -f libgtmpath.so libgtmpath.so.1 libgtmpath.so.1.0 + rm -f libgtmpath.a libgtmpath.so libgtmpath.so.1 libgtmpath.so.1.0 distclean: clean |