diff options
-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 |