From 466b7c626cc0ab40aa48b4321a27dd0afa2c3280 Mon Sep 17 00:00:00 2001 From: ketmar Date: Mon, 3 Sep 2012 07:08:46 +0300 Subject: [PATCH] fixed bug in configure --- defaults/configure/Jambase.configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/configure/Jambase.configure b/defaults/configure/Jambase.configure index de7476c..9b382af 100644 --- a/defaults/configure/Jambase.configure +++ b/defaults/configure/Jambase.configure @@ -56,10 +56,10 @@ rule -configure-detect-library- { pfx = [ DetectLibrary $(2) : $(3) : $(4) ] ; if $(pfx) { Echo "found" ; - if $(5) { [ $(5) $(pfx) $(2) ] ; } + if $(5) { [ $(5) $(pfx) : $(2) ] ; } } else { Echo "not found" ; - if $(6) { [ $(6) $(pfx) $(2) ] ; } + if $(6) { [ $(6) $(pfx) : $(2) ] ; } } } } -- 2.11.4.GIT