From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19670 invoked by alias); 20 Sep 2014 09:21:54 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 33208 Received: (qmail 21529 invoked from network); 20 Sep 2014 09:21:49 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.2 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,559,1406617200"; d="scan'208";a="478822119" From: Tanu Kaskinen To: zsh-workers@zsh.org Subject: [PATCH] configure.ac: expand all paths in the summary Date: Sat, 20 Sep 2014 12:11:27 +0300 Message-Id: <1411204287-19741-1-git-send-email-tanu.kaskinen@linux.intel.com> X-Mailer: git-send-email 1.9.3 This fixes a cosmetic issue in the configure summary text. When I ran "./configure --prefix=/home/tanu/tmp/zsh", the paths were printed as follows: binary install path : /home/tanu/tmp/zsh/bin man page install path : ${prefix}/share/man info install path : ${prefix}/share/info functions install path : ${prefix}/share/zsh/5.0.6-dev-0/functions After this patch, the paths are printed as follows: binary install path : /home/tanu/tmp/zsh/bin man page install path : /home/tanu/tmp/zsh/share/man info install path : /home/tanu/tmp/zsh/share/info functions install path : /home/tanu/tmp/zsh/share/zsh/5.0.6-dev-0/functions --- configure.ac | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 37f3585..268e56f 100644 --- a/configure.ac +++ b/configure.ac @@ -3181,9 +3181,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 @@ -3208,10 +3211,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}" -- 1.9.3