From 14b2c7ba73353078b160a26caa03c7f6e4ad019a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 26 Mar 2018 14:46:37 +0200 Subject: 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 Tested-by: Jenkins --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- cgit