diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in index de8d06dc0..c39de8b20 100644 --- a/configure.in +++ b/configure.in @@ -48,6 +48,15 @@ dnl ----------------------------- dnl Handle --program-prefix, --program-suffix, etc. AC_ARG_PROGRAM +u_ptn=`make -f - <<EOF +all: + @echo ${program_transform_name} +EOF +` +tzsh=`echo zsh | sed -e "${u_ptn}"` + +AC_SUBST(tzsh)dnl + dnl Do you want to debug zsh? undefine([zsh-debug])dnl AC_ARG_ENABLE(zsh-debug, @@ -1601,5 +1610,6 @@ info install path : ${zshinfo}" if test "$zshfndir" != no; then echo "functions install path : ${zshfndir} installed functions : ${FUNCTIONS_INSTALL} +binary/info base name : ${tzsh} " fi |