#!/bin/sh
configure_args=""
+configure="yes"
while test $# -ge 1; do
case $1 in
--disable-*) configure_args="$configure_args $1" ;;
--with-*) configure_args="$configure_args $1" ;;
--without-*) configure_args="$configure_args $1" ;;
+ --no-configure) configure="no" ;;
*) echo "unknown argument $1"; exit 1 ;;
esac
shift
autoreconf --verbose --install --symlink --force
autoreconf --verbose --install --symlink --force
-config=good # hackery so darcs_test still outputs config.log w/failed configure
+if test "$configure" = "yes"
+then
+ config=good # hackery so darcs_test still outputs config.log w/failed configure
-./configure --enable-maintainer-mode $configure_args || config=bad
+ ./configure --enable-maintainer-mode $configure_args || config=bad
-if test x$verbose = xyes; then
- cat config.log
-fi
+ if test x$verbose = xyes; then
+ cat config.log
+ fi
-test $config = bad && exit 1
+ test $config = bad && exit 1
+fi
\ No newline at end of file