[Libreoffice-commits] core.git: configure.ac

Stephan Bergmann sbergman at redhat.com
Mon Mar 26 20:40:43 UTC 2018


 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 14b2c7ba73353078b160a26caa03c7f6e4ad019a
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Mar 26 14:46:37 2018 +0200

    Fix checks
    
    ...introduced in that odd broken form with
    62737271511d3a3e57acc3087055a2155b934aae "INTEGRATION: CWS cfgcws01: 2004/09/28
    09:11:31 mmeeks 1.69.4.1: Issue number: 34707", for no apparent reason.
    
    Change-Id: I8a8aacdb77269b06cdcab369388d7ab82e3d45db
    Reviewed-on: https://gerrit.libreoffice.org/51893
    Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/configure.ac b/configure.ac
index fcab984b346d..7df36be8b0c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5006,14 +5006,14 @@ if test "$_os" = "WINNT"; then
         done
     fi
 fi
-if `$PERL -e '$perl_use_string'>/dev/null 2>&1`; then
+if $PERL -e '$perl_use_string'>/dev/null 2>&1; then
     AC_MSG_RESULT([all modules found])
 else
     AC_MSG_RESULT([failed to find some modules])
     # Find out which modules are missing.
     for i in "$perl_use_string"; do
         if test "$i" != "use" -a "$i" != ";"; then
-            if ! `$PERL -e 'use $i;'>/dev/null 2>&1`; then
+            if ! $PERL -e 'use $i;'>/dev/null 2>&1; then
                 missing_perl_modules="$missing_perl_modules $i"
             fi
         fi


More information about the Libreoffice-commits mailing list