Check-in Number:
|
4315 | |
Date: |
2004-Jan-13 10:26:46 (local)
2004-Jan-13 09:26:46 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fixed "make install" and "make uninstall": the uuid(1) CLI
has to be [un]installed through GNU libtool, too.
Submitted by: Matthias Andree <matthias.andree@gmx.de>
PR: 30 |
Tickets: |
#30 | |
uuid 0.9.0 installation failure |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.4 -> 1.5
--- 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 <matthias.andree@gmx.de>]
+
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.
|
|
ossp-pkg/uuid/Makefile.in 1.10 -> 1.11
--- 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
|
|