From: Carl Worth Date: Tue, 25 Jun 2013 23:48:13 +0000 (-0700) Subject: Stop processing command-line options at first non-option argument X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=d09ba0c7af0f6aa513a3f05fa3c5e0a24729178d;hp=d09ba0c7af0f6aa513a3f05fa3c5e0a24729178d;p=fips Stop processing command-line options at first non-option argument This makes it much easier to pass options to the program being executed by fips. The options can be passed directly, such as: fips glxgears -fullscreen Previous, to this commit, one would have to use a syntax such as: fips -- glxgears -fullscreen to prevent fips from trying to interpret the "-fullscreen" argument as options to fips itself. ---