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 /Build/source/texk/tex4htk | |
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
Diffstat (limited to 'Build/source/texk/tex4htk')
-rw-r--r-- | Build/source/texk/tex4htk/Makefile.in | 4 |
1 files changed, 2 insertions, 2 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 |