aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorDavid Carlton <carlton@bactrian.org>2003-02-08 00:39:53 +0000
committerDavid Carlton <carlton@bactrian.org>2003-02-08 00:39:53 +0000
commite1c1c0f6a0c2b23bdb42f7df46d78261d7a7331e (patch)
tree4d13b04aa49e3c29fa441f4de067d7f9f1ae8760 /gdb
parent63a300ab1efdebc5af0e17ce43cdbc8adac8a5c6 (diff)
downloadgdb-e1c1c0f6a0c2b23bdb42f7df46d78261d7a7331e.zip
gdb-e1c1c0f6a0c2b23bdb42f7df46d78261d7a7331e.tar.gz
gdb-e1c1c0f6a0c2b23bdb42f7df46d78261d7a7331e.tar.bz2
2003-02-07 David Carlton <carlton@math.stanford.edu>
* gdb_mbuild.sh: Delete extra shift after parsing '-f'.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rwxr-xr-xgdb/gdb_mbuild.sh3
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f169218..f4ebd8f 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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...
diff --git a/gdb/gdb_mbuild.sh b/gdb/gdb_mbuild.sh
index a23ea5e..fc17219 100755
--- a/gdb/gdb_mbuild.sh
+++ b/gdb/gdb_mbuild.sh
@@ -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`