Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.107' '-r1.108' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2006/02/07 08:42:53 1.107 +++ ChangeLog 2006/02/23 13:32:46 1.108 @@ -11,6 +11,14 @@ This is a list of all changes to OSSP uuid. For a more brief summary please have a look at the NEWS file. + Changes between 1.4.1 and 1.4.2 (07-Feb-2006 to xx-Feb-2006) + + o Declare "install", "uninstall" and "clean" make(1) targets + ".PHONY". This especially workarounds problems on case insensitive + filesystems (like MacOS X' filesystem) where the "INSTALL" document + conflicts with the "install" target. + [Ralf S. Engelschall, David Wheeler ] + Changes between 1.4.0 and 1.4.1 (15-Jan-2006 to 07-Feb-2006) o Upgrade to GNU shtool 2.0.5 Index: ossp-pkg/uuid/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/Makefile.in,v rcsdiff -q -kk '-r1.39' '-r1.40' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/Makefile.in,v' 2>/dev/null --- Makefile.in 2006/01/13 06:44:30 1.39 +++ Makefile.in 2006/02/23 13:32:46 1.40 @@ -219,6 +219,7 @@ (cd $(S)/pgsql && $(MAKE) $(MFLAGS) test PG_CONFIG=$(PG_CONFIG)); \ fi +.PHONY: install install: $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix) $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir) @@ -262,6 +263,7 @@ (cd $(S)/pgsql && $(MAKE) $(MFLAGS) install DESTDIR=$(DESTDIR) PG_CONFIG=$(PG_CONFIG)); \ fi +.PHONY: uninstall uninstall: -$(RM) $(DESTDIR)$(mandir)/man1/uuid.1 -@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(bindir)/uuid @@ -298,6 +300,7 @@ -$(RMDIR) $(DESTDIR)$(bindir) >/dev/null 2>&1 || $(TRUE) -$(RMDIR) $(DESTDIR)$(prefix) >/dev/null 2>&1 || $(TRUE) +.PHONY: clean clean: -$(RM) $(LIB_NAME) $(LIB_OBJS) -@if [ ".$(WITH_DCE)" = .yes ]; then \