From 8d781bdc56e8d72638d0a4b7f81a1cfca95bf379 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 29 Jan 2013 15:34:08 +0100 Subject: [PATCH] proper return value checking of libtoolize dry-run refs #3021 ran into that with debian squeeze and sh. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 52488df95..fe91b7e44 100755 --- a/autogen.sh +++ b/autogen.sh @@ -127,7 +127,7 @@ esac # verify that libtool-ltdl-devel is installed echo "Running libtoolize dry-run..." -if ! libtoolize --dry-run --quiet --copy; then +if ! `libtoolize --dry-run --quiet --copy` ; then echo "" echo "**Error**: libtoolize cannot detect necessary files." echo "" -- 2.40.0