diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2013-07-05 13:23:40 +0200 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2013-07-05 21:57:05 +0000 |
commit | 9a15f297841f9d980fe71256484b0978b35b972f (patch) | |
tree | ba526c71144213e6d973369b321826e91b522891 | |
parent | 05530423d3cff1391769192a62ae470500978ee6 (diff) |
give configure a chance to tell the user what perl-modules are missing
Change-Id: Ibd8cff5ca7d2e2807ef195601c996457e70d6d49
Reviewed-on: https://gerrit.libreoffice.org/4740
Reviewed-by: Thorsten Behrens <tbehrens@suse.com>
Tested-by: Thorsten Behrens <tbehrens@suse.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fdca180cd682..a48fcd70ff8d 100644 --- a/configure.ac +++ b/configure.ac @@ -4717,7 +4717,7 @@ AC_MSG_CHECKING([for required Perl modules]) if `$PERL -e 'use Archive::Zip; use Cwd; use Digest::MD5'>/dev/null 2>&1`; then AC_MSG_RESULT([all modules found]) else - AC_MSG_ERROR([Failed to find some modules]) + AC_MSG_RESULT([failed to find some modules]) # Find out which modules are missing. missing_perl_modules= if ! `$PERL -e 'use Archive::Zip;'>/dev/null 2>&1`; then |