[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force SVN commit: rev 408 - trunk/debian/local



Author: branden
Date: 2003-08-19 21:51:17 -0500 (Tue, 19 Aug 2003)
New Revision: 408

Modified:
   trunk/debian/local/dexconf
Log:
debian/local/dexconf: fix stupid thinko in option parsing


Modified: trunk/debian/local/dexconf
===================================================================
--- trunk/debian/local/dexconf	2003-08-20 00:44:26 UTC (rev 407)
+++ trunk/debian/local/dexconf	2003-08-20 02:51:17 UTC (rev 408)
@@ -81,9 +81,9 @@
 
 while :; do
     case "$1" in
-        -f|--format) FORMAT="$1"; shift ;;
+        -f|--format) FORMAT="$2"; shift ;;
         -h|--help) SHOWHELP=yes EARLYEXIT=yes ;;
-        -o|--output) XF86CONFIG="$1"; shift ;;
+        -o|--output) XF86CONFIG="$2"; shift ;;
         --) shift; break ;;
         *) bomb "error while parsing options; use \"$PROGNAME --help\" for help" ;;
     esac



Reply to: