summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/man/Makefile.am
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-02-08 07:21:38 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-02-08 07:21:38 +0000
commit4e0aa3cac68c35a0bd5e9d78b67e820ae9fea4d0 (patch)
tree0d79116a3741946d63b1c7a0ff7830aa23a0c86d /Build/source/texk/web2c/man/Makefile.am
parent60e5f2d4b36e6e72fb9d1af137d2da6efbea5ed8 (diff)
Use a Makefile fragment to (un)install manpage links
git-svn-id: svn://tug.org/texlive/trunk@21344 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/man/Makefile.am')
-rw-r--r--Build/source/texk/web2c/man/Makefile.am22
1 files changed, 6 insertions, 16 deletions
diff --git a/Build/source/texk/web2c/man/Makefile.am b/Build/source/texk/web2c/man/Makefile.am
index 1c13063df99..f134c9f25f4 100644
--- a/Build/source/texk/web2c/man/Makefile.am
+++ b/Build/source/texk/web2c/man/Makefile.am
@@ -1,6 +1,6 @@
## Makefile.am for the TeX Live subdirectory texk/web2c/man/
##
-## Copyright (C) 2009, 2010 Peter Breitenlohner <tex-live@tug.org>
+## Copyright (C) 2009 - 2011 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
man_sources = $(bootstrap_man_sources)
@@ -81,21 +81,11 @@ misc_man_sources = \
include $(top_srcdir)/../am/man.am
-install-data-hook:
- @cd $(DESTDIR)$(man1dir) && \
- for s in $(man1_links); do \
- link=`echo $$s | sed 's,.*:,,'`; \
- file=`echo $$s | sed 's,:.*,,'`; \
- rm -f $$link.1; \
- echo "creating link '$$link.1' -> '$$file.1'"; \
- $(LN_S) $$file.1 $$link.1 || exit 1; \
- done
-
-uninstall-hook:
- @for s in $(man1_links); do \
- link=`echo $$s | sed 's,.*:,,'`; \
- rm -f $(DESTDIR)$(man1dir)/$$link.1; \
- done
+include $(top_srcdir)/../am/man1_links.am
+
+install-data-hook: install-man1-links
+
+uninstall-hook:uninstall-man1-links
## Obsolete ?
##