mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
33208: improve report on paths at end of configuration
This commit is contained in:
parent
e171c19320
commit
7c6e267da4
2 changed files with 14 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
2014-09-22 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* 33208: Tanu Kaskinen:
|
||||
|
||||
2014-09-20 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* 33214 (modified yet further): configure.ac: test prefixes better.
|
||||
|
|
17
configure.ac
17
configure.ac
|
@ -3200,9 +3200,12 @@ AC_OUTPUT
|
|||
|
||||
eval "zshbin1=${bindir}"
|
||||
eval "zshbin2=${zshbin1}"
|
||||
eval "zshman=${mandir}"
|
||||
eval "zshinfo=${infodir}"
|
||||
eval "zshfndir=${fndir}"
|
||||
eval "zshman1=${mandir}"
|
||||
eval "zshman2=${zshman1}"
|
||||
eval "zshinfo1=${infodir}"
|
||||
eval "zshinfo2=${zshinfo1}"
|
||||
eval "zshfndir1=${fndir}"
|
||||
eval "zshfndir2=${zshfndir1}"
|
||||
|
||||
echo "
|
||||
zsh configuration
|
||||
|
@ -3227,10 +3230,10 @@ echo "\
|
|||
library flags : ${LIBS}
|
||||
installation basename : ${tzsh_name}
|
||||
binary install path : ${zshbin2}
|
||||
man page install path : ${zshman}
|
||||
info install path : ${zshinfo}"
|
||||
if test "$zshfndir" != no; then
|
||||
echo "functions install path : ${zshfndir}"
|
||||
man page install path : ${zshman2}
|
||||
info install path : ${zshinfo2}"
|
||||
if test "$zshfndir2" != no; then
|
||||
echo "functions install path : ${zshfndir2}"
|
||||
fi
|
||||
if test "x$additionalfpath" != x; then
|
||||
echo "additional fpath entries : ${additionalfpath}"
|
||||
|
|
Loading…
Reference in a new issue