[Libreoffice-commits] .: configure.in

Tor Lillqvist tml at kemper.freedesktop.org
Fri Jun 3 06:31:55 PDT 2011


 configure.in |   16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

New commits:
commit 9b48a95b2587833ea9aa59ab2172430675604e3c
Author: Tor Lillqvist <tlillqvist at novell.com>
Date:   Fri Jun 3 16:31:32 2011 +0300

    Move g++-specific result printout inside corresponding gcc-specific conditional

diff --git a/configure.in b/configure.in
index 66b73e7..4452d69 100755
--- a/configure.in
+++ b/configure.in
@@ -2762,14 +2762,16 @@ if test "$GXX" = "yes"; then
          with_gxx_include_path=`cd $with_gxx_include_path && pwd`
       fi
    fi
-fi
-dnl This is the original code...
-dnl with_gxx_include_path=`$CXX -print-search-dirs | grep instal |$AWK '{ print \$2 }'`/include
-if test -z "$with_gxx_include_path"; then
-   with_gxx_include_path="NO_GXX_INCLUDE"
-   AC_MSG_RESULT([no g++ includes])
+   dnl This is the original code...
+   dnl with_gxx_include_path=`$CXX -print-search-dirs | grep instal |$AWK '{ print \$2 }'`/include
+   if test -z "$with_gxx_include_path"; then
+      with_gxx_include_path="NO_GXX_INCLUDE"
+      AC_MSG_RESULT([none])
+   else
+      AC_MSG_RESULT([$with_gxx_include_path])
+   fi
 else
-   AC_MSG_RESULT([$with_gxx_include_path])
+   with_gxx_include_path="NO_GXX_INCLUDE"
 fi
 GXX_INCLUDE_PATH="$with_gxx_include_path"
 AC_SUBST(GXX_INCLUDE_PATH)


More information about the Libreoffice-commits mailing list