diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ check_command () { check_perl_deps () { for d in "$@" do - echo "Checking for perl module $d ... " + echo -n "Checking for perl module $d ... " if perl -Ilib -e "use $d;" then echo 'found!' else echo 'not available!'; exit 1 @@ -120,7 +120,7 @@ case "$JWM_MAILDIR_EXTRACTOR" in MAILDIR_EXTRACTOR_BIN=script/extract.py ;; (extractrs) - [ -f "$(pwd)/extract/Cargo.toml" ] + [ -f "$(pwd)/extract/Cargo.toml" ] || { echo 'extractrs not available' >&2; exit; } JWM_EXTRACTRS_DIR=extract check_command cargo MAILDIR_EXTRACTOR_BIN=bin/jwebmail-extract |