Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2004/01/13 09:20:03 1.4 +++ ChangeLog 2004/01/13 09:26:46 1.5 @@ -13,6 +13,10 @@ Changes between 0.9.0 and 0.9.1 (11-Jan-2004 to xx-Jan-2004) + o Fixed "make install" and "make uninstall": the uuid(1) CLI + has to be [un]installed through GNU libtool, too. + [Matthias Andree ] + o Document in uuid(1) [uuid_cli.pod] that for version 3 UUIDs additional arguments are required and what pre-defined namespace ids are known. Index: ossp-pkg/uuid/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/Makefile.in,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/Makefile.in,v' 2>/dev/null --- Makefile.in 2004/01/11 08:54:17 1.10 +++ Makefile.in 2004/01/13 09:26:46 1.11 @@ -119,13 +119,13 @@ $(SHTOOL) install -c -m 644 uuid.h $(DESTDIR)$(includedir)/ $(SHTOOL) install -c -m 644 uuid.3 $(DESTDIR)$(mandir)/man3/ @$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libuuid.la $(DESTDIR)$(libdir)/ - $(SHTOOL) install -c -s -m 755 uuid $(DESTDIR)$(bindir)/ + @$(LIBTOOL) --mode=install $(SHTOOL) install -c -s -m 755 uuid $(DESTDIR)$(bindir)/ $(SHTOOL) install -c -m 644 uuid.1 $(DESTDIR)$(mandir)/man1/ uninstall: -$(RM) $(DESTDIR)$(mandir)/man1/uuid.1 - -$(RM) $(DESTDIR)$(bindir)/uuid - @$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libuuid.la + -@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(bindir)/uuid + -@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libuuid.la -$(RM) $(DESTDIR)$(mandir)/man3/uuid.3 -$(RM) $(DESTDIR)$(includedir)/uuid.h -$(RM) $(DESTDIR)$(bindir)/uuid-config