diff options
Diffstat (limited to 'Build/source/Makefile.in')
-rw-r--r-- | Build/source/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Build/source/Makefile.in b/Build/source/Makefile.in index 4bc4cc11296..bb4be69d7f6 100644 --- a/Build/source/Makefile.in +++ b/Build/source/Makefile.in @@ -1044,8 +1044,11 @@ world: all @echo "top-level make $@: running install-strip..." $(MAKE) $(AM_MAKEFLAGS) install-strip # - @echo "top-level make $@: making run-texlinks in $(texlinks_dir) ..." - cd $(texlinks_dir) && $(MAKE) $(AM_MAKEFLAGS) run-texlinks +# Just in case it's not a full checkout. + if test -d "$(texlinks_dir)"; then \ + echo "top-level make $@: making run-texlinks in $(texlinks_dir) ..."; \ + cd $(texlinks_dir) && $(MAKE) $(AM_MAKEFLAGS) run-texlinks; \ + else :; fi # @echo "top-level make $@: running $(check_target)..." $(MAKE) $(AM_MAKEFLAGS) $(check_target) |