From 692b10858d8be54706f3e02ba3075c9718d7d683 Mon Sep 17 00:00:00 2001 From: Fritz Koenig Date: Wed, 10 Nov 2010 14:51:49 -0800 Subject: [PATCH] configure : Incorrect syntax in configure Check to see if postproc was enabled when enabling the postproc visualizer was wrong. Fix for bug introduced in Change Ia74f357d Change-Id: I4bee9ad2caee3cfe3bac6972047f6af7c54cad4e --- configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 60308b0..f32fffe 100755 --- a/configure +++ b/configure @@ -538,8 +538,9 @@ process_toolchain() { # Other toolchain specific defaults case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac - enabled postproc_visualizer && {enabled postproc \ - || die "postproc_visualizer requires postproc to be enabled"} + if enabled postproc_visualizer; then + enabled postproc || die "postproc_visualizer requires postproc to be enabled" + fi } -- 2.7.4