2003-02-07 David Carlton <carlton@math.stanford.edu>
authorDavid Carlton <carlton@bactrian.org>
Sat, 8 Feb 2003 00:39:53 +0000 (00:39 +0000)
committerDavid Carlton <carlton@bactrian.org>
Sat, 8 Feb 2003 00:39:53 +0000 (00:39 +0000)
* gdb_mbuild.sh: Delete extra shift after parsing '-f'.

gdb/ChangeLog
gdb/gdb_mbuild.sh

index f169218..f4ebd8f 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-07  David Carlton  <carlton@math.stanford.edu>
+
+       * gdb_mbuild.sh: Delete extra shift after parsing '-f'.
+
 2003-02-07  Kevin Buettner  <kevinb@redhat.com>
 
        * gdbtypes.h (struct main_type): Move ``length'' field from here...
index a23ea5e..fc17219 100755 (executable)
@@ -85,7 +85,8 @@ do
        ;;
     -f )
        # Force a rebuild
-       force=true ; shift ;;
+       force=true ;
+       ;;
     -v )
        # Be more, and more, and more, verbose
        verbose=`expr ${verbose} + 1`