diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/Makefile.am | 3 | ||||
-rw-r--r-- | doc/Makefile.in | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 9c18e99e..65907bc1 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2012-08-01 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (install-data-hook): Install a dgawk.1 link to the + man page also. Remove it on uninstall. + 2012-07-29 Andrew J. Schorr <aschorr@telemetry-investments.com> * gawk.texi: Document that RT is set by getline. diff --git a/doc/Makefile.am b/doc/Makefile.am index 744b70a9..d1e15abe 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -71,11 +71,12 @@ LN= ln -f 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 ceee811c..ed205bb9 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -816,11 +816,12 @@ uninstall-man: uninstall-man1 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) |