From b53eba585aae3c3ad2a8a98f31dad08360d71036 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 29 Feb 2016 23:45:57 +0100 Subject: [PATCH] Allow configure(1) to be bypassed completely --- tests/python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python.sh b/tests/python.sh index deda106..643184a 100755 --- a/tests/python.sh +++ b/tests/python.sh @@ -23,11 +23,11 @@ PKG_CONFIG_PATH="$PWD/../data:$LIBDIR/pkgconfig" PYTHONDIR="../src/python" #executables -CONFIGURE="configure" +CONFIGURE="configure -v" MAKE="make" [ -n "$OBJDIR" ] && PKG_CONFIG_PATH="${OBJDIR}../data:$LIBDIR/pkgconfig" (cd "$PYTHONDIR" && - $CONFIGURE -v && + $CONFIGURE && PKG_CONFIG_PATH="$PKG_CONFIG_PATH" $MAKE clean all)