diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-03-26 14:46:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-03-26 22:40:10 +0200 |
commit | 14b2c7ba73353078b160a26caa03c7f6e4ad019a (patch) | |
tree | ba5df52137d54f6195fc05121309e3189a954b17 /configure.ac | |
parent | c2a4061e3e3b45679a03ef3295f9f824cb430d40 (diff) |
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@collabora.com>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files 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 |