aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/Makefile.am5
-rw-r--r--doc/Makefile.in5
3 files changed, 11 insertions, 4 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index e5d29bd6..00185def 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2012-10-13 Arnold D. Robbins <arnold@skeeve.com>
+
+ * Makefile.am: Add dgawk.1 to man page links created / removed
+ on install / uninstall.
+
2012-10-02 Arnold D. Robbins <arnold@skeeve.com>
* gawk.texi (Glossary). Correct the full name for `ISO' per
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 744b70a9..7d683f2b 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 1aeacfa9..750c0859 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)