configure: remove argument for --build-32bit-win
authorJens Axboe <axboe@kernel.dk>
Wed, 1 May 2013 11:00:26 +0000 (13:00 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 1 May 2013 11:00:26 +0000 (13:00 +0200)
It's an enable type option, just remove the argument.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
configure

index 7be8789ff37f2d211470152b4187cdcbc10b7ec4..5939bed7fec6316bc9c2b22cda6cd3ce364fdf63 100755 (executable)
--- a/configure
+++ b/configure
@@ -148,7 +148,7 @@ for opt do
   ;;
   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
   ;;
-  --build-32bit-win=*) build_32bit_win="$optarg"
+  --build-32bit-win) build_32bit_win="yes"
   ;;
   --enable-gfio)
   gfio="yes"
@@ -167,7 +167,7 @@ if test "$show_help" = "yes" ; then
   echo "--cpu=                 Specify target CPU if auto-detect fails"
   echo "--cc=                  Specify compiler to use"
   echo "--extra-cflags=        Specify extra CFLAGS to pass to compiler"
-  echo "--build-32bit-win=     Specify yes for a 32-bit build on Windows"
+  echo "--build-32bit-win      Enable 32-bit build on Windows"
   echo "--enable-gfio          Enable building of gtk gfio"
   exit $exit_val
 fi