From: ellson Date: Tue, 3 Jan 2006 16:48:06 +0000 (+0000) Subject: fix bug in "make uninstall" X-Git-Tag: LAST_LIBGRAPH~32^2~6899 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13039950d623b9d5ff83137b1d6f1c954275a5c1;p=graphviz fix bug in "make uninstall" --- diff --git a/cmd/dot/Makefile.am b/cmd/dot/Makefile.am index c3f84c557..108a71e3a 100644 --- a/cmd/dot/Makefile.am +++ b/cmd/dot/Makefile.am @@ -38,7 +38,7 @@ uninstall-hook: (cd $(DESTDIR)$(man1dir); for i in $(linkedman); do rm -f $$i; done;) (cd $(DESTDIR)$(pdfdir); for i in $(linkedpdf); do rm -f $$i; done;) (cd $(DESTDIR)$(bindir); for i in $(linkedprogram); do rm -f $$i; done;) - (cd $(DESTDIR)$(libdir); rm -f config; done;) + (cd $(DESTDIR)$(libdir); rm -f config;) dot.pdf: $(top_srcdir)/cmd/dot/dot.1 groff -Tps -man $(top_srcdir)/cmd/dot/dot.1 | ps2pdf - - >$@