sotruss: fix argument parsing
authorAndreas Schwab <schwab@linux-m68k.org>
Mon, 26 Nov 2012 19:58:27 +0000 (20:58 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 26 Nov 2012 19:58:27 +0000 (20:58 +0100)
ChangeLog
elf/sotruss.ksh

index bca890a..a6af6e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-11-26  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
+
 2012-11-24  Adam Conrad  <adconrad@0c3.net>
 
        * configure.in: Autodetect C++ header directories.
index 587ab68..8390b6c 100755 (executable)
@@ -94,14 +94,14 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
       do_missing_arg "$1"
     fi
     shift
-    SOTRUSS_FROMLIST="$2"
+    SOTRUSS_FROMLIST="$1"
     ;;
   -T | --t | --to)
     if test $# -eq 1; then
       do_missing_arg "$1"
     fi
     shift
-    SOTRUSS_TOLIST="$2"
+    SOTRUSS_TOLIST="$1"
     ;;
   -o | --o | --ou | --out | --outp | --outpu | --output)
     if test $# -eq 1; then