From d0419b4f0a1f6635fc2b809ee13d6b968f70c518 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Wed, 31 Jul 2019 16:25:23 +0200 Subject: [PATCH] Fix configure --- configure | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 2599fbbc..372bada7 100755 --- a/configure +++ b/configure @@ -435,18 +435,18 @@ if [[ ${ZLIB} = $(not_found) ]] ; then fail fi -BWRAP=$(find_exe bwrap) -if [[ ${BWRAP} = $(not_found) ]] ; then - error "Bubblewrap (bwrap) is not installed." - fail -fi - LIBCAP=$(find_lib -lcap) if [[ ${LIBCAP} = $(not_found) ]] ; then error "Libcap (libcap) is not installed." fail fi +BWRAP=$(find_exe bwrap) +if [[ ${BWRAP} = $(not_found) ]] ; then + error "Bubblewrap (bwrap) is not installed." + fail +fi + OPAM=$(find_exe opam) if [[ ${OPAM} = $(not_found) ]] ; then error "OPAM (ocaml) package manager is not installed."