summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorVladimir Volovich <vvv@vsu.ru>2008-03-25 09:50:28 +0000
committerVladimir Volovich <vvv@vsu.ru>2008-03-25 09:50:28 +0000
commitc5c91c5a707fb967cf55615af9fcf9543e664c1a (patch)
treee8ebb3acd88e941c26a716076e17ebce7eb461d3 /Build
parentb71ba8a96bff6eb8243188b779a0e52c009fb930 (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')
-rw-r--r--Build/source/utils/xindy/doc/Makefile.am10
-rw-r--r--Build/source/utils/xindy/tex2xindy/Makefile.am2
-rw-r--r--Build/source/utils/xindy/user-commands/Makefile.am16
3 files changed, 14 insertions, 14 deletions
diff --git a/Build/source/utils/xindy/doc/Makefile.am b/Build/source/utils/xindy/doc/Makefile.am
index adceaa4091f..c0d62452e0b 100644
--- a/Build/source/utils/xindy/doc/Makefile.am
+++ b/Build/source/utils/xindy/doc/Makefile.am
@@ -57,17 +57,17 @@ if MAINTAINER_MODE
GROFF = groff
$(srcdir)/xindy.pdf: $(top_srcdir)/user-commands/xindy.1
- -$(GROFF) -man -P-g $< | ps2pdf - $@
+ $(GROFF) -man -P-g $< | ps2pdf - $@
$(srcdir)/texindy.pdf: $(top_srcdir)/user-commands/texindy.1
- -$(GROFF) -man -P-g $< | ps2pdf - $@
+ $(GROFF) -man -P-g $< | ps2pdf - $@
$(srcdir)/makeindex4.pdf: $(top_srcdir)/user-commands/makeindex4.1
- -$(GROFF) -man -P-g $< | ps2pdf - $@
+ $(GROFF) -man -P-g $< | ps2pdf - $@
$(srcdir)/xindy.v2.pdf: $(top_srcdir)/user-commands/xindy.v2.1
- -$(GROFF) -man -P-g $< | ps2pdf - $@
+ $(GROFF) -man -P-g $< | ps2pdf - $@
$(srcdir)/tex2xindy.pdf: $(top_srcdir)/tex2xindy/tex2xindy.1
- -$(GROFF) -man -P-g $< | ps2pdf - $@
+ $(GROFF) -man -P-g $< | ps2pdf - $@
endif
diff --git a/Build/source/utils/xindy/tex2xindy/Makefile.am b/Build/source/utils/xindy/tex2xindy/Makefile.am
index 562ee3ac0e0..2f3ae1b5fbd 100644
--- a/Build/source/utils/xindy/tex2xindy/Makefile.am
+++ b/Build/source/utils/xindy/tex2xindy/Makefile.am
@@ -41,7 +41,7 @@ POD_NAME = `basename $@ .1 | tr '[a-z]' '[A-Z]'`
POD2MAN = pod2man
$(srcdir)/tex2xindy.1: $(srcdir)/tex2xindy.l
- -$(POD2MAN) --center '$(PACKAGE_NAME)' \
+ $(POD2MAN) --center '$(PACKAGE_NAME)' \
--name="$(POD_NAME)" \
--release "Version $(POD_VERSION)" \
--date "$(POD_DATE)" \
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)" \