diff options
author | Karl Berry <karl@freefriends.org> | 2021-02-10 02:06:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-02-10 02:06:16 +0000 |
commit | f7d85010d576338dfe636b97b585fee191ac08ca (patch) | |
tree | e28cb0342fc08ca2b4174a4ff5a8d058a30e1e2e /Build/source/m4 | |
parent | f488d81861efec661f083c7f58e8984b7dc11a7a (diff) |
debugging line if configure not found in subdir
git-svn-id: svn://tug.org/texlive/trunk@57699 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/m4')
-rw-r--r-- | Build/source/m4/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/m4/kpse-setup.m4 | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/m4/ChangeLog b/Build/source/m4/ChangeLog index 58156e0fa6b..a34db9d835f 100644 --- a/Build/source/m4/ChangeLog +++ b/Build/source/m4/ChangeLog @@ -1,3 +1,7 @@ +2021-02-09 Karl Berry <karl@freefriends.org> + + * kpse-setup.m4 (_KPSE_RECURSE): add debug if configure not found. + 2021-02-07 Karl Berry <karl@freefriends.org> * kpse-pkgs.m4 (KPSE_UTILS_PKGS): new utils program xml2pmx. diff --git a/Build/source/m4/kpse-setup.m4 b/Build/source/m4/kpse-setup.m4 index 1c04d6d3665..8da68c573a0 100644 --- a/Build/source/m4/kpse-setup.m4 +++ b/Build/source/m4/kpse-setup.m4 @@ -1,6 +1,6 @@ # $Id$ # Private macros for the TeX Live (TL) tree. -# Copyright 2017-2020 Karl Berry <tex-live@tug.org> +# Copyright 2017-2021 Karl Berry <tex-live@tug.org> # Copyright 2009-2015 Peter Breitenlohner <tex-live@tug.org> # # This file is free software; the copyright holder @@ -283,6 +283,8 @@ m4_ifdef([have_]Kpse_pkg, [dnl if test -x $srcdir/$4Kpse_Pkg/configure; then $3 && Kpse_add([MAKE_SUBDIRS]) Kpse_add([CONF_SUBDIRS]) +else + echo 'tldbg:[$0] skipping subdir, no (executable) configure: '"$srcdir"'/$4Kpse_Pkg/configure' >&AS_MESSAGE_LOG_FD fi ])[]dnl m4_ifdef ]) |