diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-05-17 23:55:02 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-05-17 23:55:02 +0000 |
commit | 3707fab2069975a52791bf2d59d2e7d6e63fac77 (patch) | |
tree | abd6145e94185576271138b86f18725c8b5d3ed0 | |
parent | 4c7ea4f0eb408f0208b612390775563d08d5a4c6 (diff) |
cosmetic change in displaying error message when installing symlinks
(use stderr instead of stdout, and exit 1 instead of false)
git-svn-id: svn://tug.org/texlive/trunk@8198 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/tex4htk/Makefile.in | 4 | ||||
-rw-r--r-- | Build/source/utils/xindy/user-commands/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/utils/xindy/user-commands/Makefile.in | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/tex4htk/Makefile.in b/Build/source/texk/tex4htk/Makefile.in index 9a37f779e50..d7859d85fda 100644 --- a/Build/source/texk/tex4htk/Makefile.in +++ b/Build/source/texk/tex4htk/Makefile.in @@ -40,8 +40,8 @@ install-exec: all elif test -d "$(bindir)/../texmf-dist/scripts/tex4ht"; then \ d=../texmf-dist/scripts/tex4ht; \ else \ - echo "Error: texmf-dist/scripts/tex4ht directory not found"; \ - false; \ + echo "Error: texmf-dist/scripts/tex4ht directory not found" >&2; \ + exit 1; \ fi; \ for p in $(shell_scripts); do rm -f $(bindir)/$$p; ln -s $$d/$$p.sh $(bindir)/$$p; done; \ for p in $(perl_scripts); do rm -f $(bindir)/$$p; ln -s $$d/$$p.pl $(bindir)/$$p; done diff --git a/Build/source/utils/xindy/user-commands/Makefile.am b/Build/source/utils/xindy/user-commands/Makefile.am index 65714f9309f..47a09347bbc 100644 --- a/Build/source/utils/xindy/user-commands/Makefile.am +++ b/Build/source/utils/xindy/user-commands/Makefile.am @@ -33,8 +33,8 @@ install-exec-hook: xindy ln -s ../texmf/scripts/xindy/xindy.pl $(bindir)/xindy; \ ln -s ../texmf/scripts/xindy/texindy.pl $(bindir)/texindy; \ else \ - echo "Error: texmf/scripts/xindy directory not found"; \ - false; \ + echo "Error: texmf/scripts/xindy directory not found" >&2; \ + exit 1; \ fi else bin_SCRIPTS = xindy diff --git a/Build/source/utils/xindy/user-commands/Makefile.in b/Build/source/utils/xindy/user-commands/Makefile.in index b96a7123ef0..539c34fd01f 100644 --- a/Build/source/utils/xindy/user-commands/Makefile.in +++ b/Build/source/utils/xindy/user-commands/Makefile.in @@ -434,8 +434,8 @@ uninstall-man: uninstall-man1 @TETEX_BUILD_TRUE@ ln -s ../texmf/scripts/xindy/xindy.pl $(bindir)/xindy; \ @TETEX_BUILD_TRUE@ ln -s ../texmf/scripts/xindy/texindy.pl $(bindir)/texindy; \ @TETEX_BUILD_TRUE@ else \ -@TETEX_BUILD_TRUE@ echo "Error: texmf/scripts/xindy directory not found"; \ -@TETEX_BUILD_TRUE@ false; \ +@TETEX_BUILD_TRUE@ echo "Error: texmf/scripts/xindy directory not found" >&2; \ +@TETEX_BUILD_TRUE@ exit 1; \ @TETEX_BUILD_TRUE@ fi xindy: xindy.in |