diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-03-25 09:50:28 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-03-25 09:50:28 +0000 |
commit | c5c91c5a707fb967cf55615af9fcf9543e664c1a (patch) | |
tree | e8ebb3acd88e941c26a716076e17ebce7eb461d3 /Build/source/utils/xindy/user-commands | |
parent | b71ba8a96bff6eb8243188b779a0e52c009fb930 (diff) |
tex2xindy/Makefile.am, doc/Makefile.am, user-commands/Makefile.am:
since we've put rules for manpage and PDF docs regeneration
inside MAINTAINER_MODE, do not ignore make errors if pod2man or
groff is not available (reverting previous change which was ignoring errors)
user-commands/Makefile.am:
if TETEX_BUILD, install perl wrapper scripts (xindy xindy.v2
texindy) under $(prefix)/texmf/scripts/xindy/ using the .pl
suffix (added the suffix).
git-svn-id: svn://tug.org/texlive/trunk@7143 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy/user-commands')
-rw-r--r-- | Build/source/utils/xindy/user-commands/Makefile.am | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Build/source/utils/xindy/user-commands/Makefile.am b/Build/source/utils/xindy/user-commands/Makefile.am index 49d0cfec473..4f17a330469 100644 --- a/Build/source/utils/xindy/user-commands/Makefile.am +++ b/Build/source/utils/xindy/user-commands/Makefile.am @@ -22,12 +22,12 @@ if TETEX_BUILD install-exec-hook: xindy xindy.v2 - $(INSTALL_SCRIPT) xindy $(prefix)/texmf/scripts/xindy/ - ln -s ../../texmf/scripts/xindy/xindy $(bindir)/xindy -# $(INSTALL_SCRIPT) xindy.v2 $(prefix)/texmf/scripts/xindy/ -# ln -s ../../texmf/scripts/xindy/xindy.v2 $(bindir)/xindy.v2 - $(INSTALL_SCRIPT) $(srcdir)/texindy $(prefix)/texmf/scripts/xindy/ - ln -s ../../texmf/scripts/xindy/texindy $(bindir)/texindy + $(INSTALL_SCRIPT) xindy $(prefix)/texmf/scripts/xindy/xindy.pl + ln -s ../../texmf/scripts/xindy/xindy.pl $(bindir)/xindy +# $(INSTALL_SCRIPT) xindy.v2 $(prefix)/texmf/scripts/xindy/xindy.v2.pl +# ln -s ../../texmf/scripts/xindy/xindy.v2.pl $(bindir)/xindy.v2 + $(INSTALL_SCRIPT) $(srcdir)/texindy $(prefix)/texmf/scripts/xindy/texindy.pl + ln -s ../../texmf/scripts/xindy/texindy.pl $(bindir)/texindy else bin_SCRIPTS = xindy xindy.v2 dist_bin_SCRIPTS = texindy @@ -54,14 +54,14 @@ POD_NAME = `basename $@ .1 | tr '[a-z]' '[A-Z]'` POD2MAN = pod2man $(srcdir)/xindy.1: $(srcdir)/xindy.in - -$(POD2MAN) --center '$(PACKAGE_NAME)' \ + $(POD2MAN) --center '$(PACKAGE_NAME)' \ --name="$(POD_NAME)" \ --release "Version $(POD_VERSION)" \ --date "$(POD_DATE)" \ $< $@ $(srcdir)/texindy.1: $(srcdir)/texindy - -$(POD2MAN) --center '$(PACKAGE_NAME)' \ + $(POD2MAN) --center '$(PACKAGE_NAME)' \ --name="$(POD_NAME)" \ --release "Version $(POD_VERSION)" \ --date "$(POD_DATE)" \ |