[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. e8e225d7d45e44
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. e8e225d7d45e44126d57097cb9209195cdaf2c22 |
Date: |
Sat, 13 Oct 2012 18:24:16 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.0-stable has been updated
via e8e225d7d45e44126d57097cb9209195cdaf2c22 (commit)
from a0ef67a123fd54eeaf8eb2aa9ccae2d4835bd3c5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=e8e225d7d45e44126d57097cb9209195cdaf2c22
commit e8e225d7d45e44126d57097cb9209195cdaf2c22
Author: Arnold D. Robbins <address@hidden>
Date: Sat Oct 13 20:23:47 2012 +0200
Make dgawk.1 man page link.
diff --git a/doc/ChangeLog b/doc/ChangeLog
index e5d29bd..00185de 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2012-10-13 Arnold D. Robbins <address@hidden>
+
+ * Makefile.am: Add dgawk.1 to man page links created / removed
+ on install / uninstall.
+
2012-10-02 Arnold D. Robbins <address@hidden>
* gawk.texi (Glossary). Correct the full name for `ISO' per
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 744b70a..7d683f2 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -67,15 +67,16 @@ AWKCARD = awkcard.ps
# We want hard links for install-data-hook, below
LN= ln -f
-# Link gawk.1 to pgawk.1
+# Link gawk.1 to pgawk.1 and to dgawk.1
install-data-hook:
(cd $(DESTDIR)$(man1dir); \
$(LN) gawk.1 pgawk.1 2>/dev/null ; \
+ $(LN) gawk.1 dgawk.1 2>/dev/null ; \
exit 0)
# Undo the above when uninstalling
uninstall-hook:
- cd $(DESTDIR)$(man1dir); rm -f pgawk.1 ; exit 0
+ cd $(DESTDIR)$(man1dir); rm -f pgawk.1 dgawk.1 ; exit 0
postscript: gawk.ps gawkinet.ps gawk.1.ps igawk.1.ps $(AWKCARD)
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 1aeacfa..750c085 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -806,15 +806,16 @@ uninstall-man: uninstall-man1
uninstall-pdf-am uninstall-ps-am
-# Link gawk.1 to pgawk.1
+# Link gawk.1 to pgawk.1 and to dgawk.1
install-data-hook:
(cd $(DESTDIR)$(man1dir); \
$(LN) gawk.1 pgawk.1 2>/dev/null ; \
+ $(LN) gawk.1 dgawk.1 2>/dev/null ; \
exit 0)
# Undo the above when uninstalling
uninstall-hook:
- cd $(DESTDIR)$(man1dir); rm -f pgawk.1 ; exit 0
+ cd $(DESTDIR)$(man1dir); rm -f pgawk.1 dgawk.1 ; exit 0
postscript: gawk.ps gawkinet.ps gawk.1.ps igawk.1.ps $(AWKCARD)
-----------------------------------------------------------------------
Summary of changes:
doc/ChangeLog | 5 +++++
doc/Makefile.am | 5 +++--
doc/Makefile.in | 5 +++--
3 files changed, 11 insertions(+), 4 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. e8e225d7d45e44126d57097cb9209195cdaf2c22,
Arnold Robbins <=