Check-in Number:
|
4896 | |
Date: |
2004-Dec-06 20:47:38 (local)
2004-Dec-06 19:47:38 (UTC) |
User: | rse |
Branch: | |
Comment: |
Do not insist on writing to the source directory on "make install"
in order to more closely follow GNU standards.
Remove "*.bak" and "*~" files under "make distclean"
instead of "make clean".
Submitted by: Bruno Haible <bruno@clisp.org> |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/pth/ChangeLog 1.632 -> 1.633
--- ChangeLog 2004/12/03 17:03:30 1.632
+++ ChangeLog 2004/12/06 19:47:38 1.633
@@ -19,6 +19,16 @@
/ __/ | |_| |
__|_____(_)___/_________________________________________________________
+ Changes between 2.0.3 and 2.0.4 (03-Dec-2004 to xx-Dec-2004)
+
+ *) Do not insist on writing to the source directory on "make install"
+ in order to more closely follow GNU standards.
+ [Bruno Haible <bruno@clisp.org>]
+
+ *) Remove "*.bak" and "*~" files under "make distclean"
+ instead of "make clean".
+ [Bruno Haible <bruno@clisp.org>]
+
Changes between 2.0.2 and 2.0.3 (12-Sep-2004 to 03-Dec-2004)
*) Resurrect the old "make striptease" command by fixing the
|
|
ossp-pkg/pth/Makefile.in 1.153 -> 1.154
--- Makefile.in 2004/12/03 17:03:30 1.153
+++ Makefile.in 2004/12/06 19:47:38 1.154
@@ -157,10 +157,10 @@
# the default target
all: all-normal
all-normal: $(TARGET_ALL)
- @touch .done-all
+ @touch .done-all >/dev/null 2>&1 || $(TRUE)
@$(MAKE) $(MKFLAGS) what-next
all-for-install: $(TARGET_ALL)
- @touch .done-all
+ @touch .done-all >/dev/null 2>&1 || $(TRUE)
# build the private shared header file
pth_p.h: $(S)pth_p.h.in
@@ -217,7 +217,7 @@
# install the package
install: all-for-install
@$(MAKE) $(MKFLAGS) install-dirs install-pth @INSTALL_PTHREAD@
- @touch .done-install
+ @touch .done-install >/dev/null 2>&1 || $(TRUE)
@$(MAKE) $(MKFLAGS) what-next
install-dirs:
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
@@ -246,7 +246,7 @@
# uninstall the package
uninstall:
@$(MAKE) $(MKFLAGS) @UNINSTALL_PTHREAD@ uninstall-pth uninstall-dirs
- @touch .done-uninstall
+ @touch .done-uninstall >/dev/null 2>&1 || $(TRUE)
@$(MAKE) $(MKFLAGS) what-next
uninstall-pthread:
$(RM) $(DESTDIR)$(bindir)/pthread-config
@@ -285,10 +285,10 @@
$(RM) $(TARGET_PREQ)
$(RM) $(TARGET_TEST)
$(RM) $(TARGET_LIBS)
- $(RM) core *.core *.bak *~
$(RM) *.o *.lo
$(RM) .libs/*
-$(RMDIR) .libs >/dev/null 2>&1 || $(TRUE)
+ $(RM) core *.core
$(RM) .done-*
# clean the source tree for re-configuring and re-building
@@ -298,6 +298,7 @@
$(RM) pthread-config pthread.h
$(RM) config.log config.cache config.status
$(RM) libtool
+ $(RM) *.bak *~
# clean the source tree by removing really all generate stuff
realclean: distclean
@@ -341,7 +342,7 @@
test-std: test_std
-@./test_std; \
if [ $$? -eq 0 ]; then \
- touch .done-test; \
+ touch .done-test >/dev/null 2>&1 || $(TRUE); \
if [ ".`grep $(PLATFORM) $(S)PORTING`" = . ]; then \
VERSION=`$(SHTOOL) version -lc -dshort $(_VERSION_FILE)`; \
echo "Please send the following summary line via Email to the author"; \
|
|
ossp-pkg/pth/THANKS 1.98 -> 1.99
--- THANKS 2004/12/03 16:21:08 1.98
+++ THANKS 2004/12/06 19:47:38 1.99
@@ -42,6 +42,7 @@
o Artem Gr <artem@bizlink.ru>
o Ed Grether <egrether@pobox.com>
o Georg C. F. Greve <greve@gnu.org>
+ o Bruno Haible <bruno@clisp.org>
o Eric Hanchrow <offby1@blarg.net>
o Ben Harris <bjh21@cam.ac.uk>
o Tim Harris <tim_harris@snellwilcox.com>
|
|