From: Tom Tromey Date: Thu, 23 Nov 1995 17:58:08 +0000 (+0000) Subject: Fixed bug in "--" option processing X-Git-Tag: Release-0-25~186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07e50f2ba3dddb76d0768bd53a3a003f37108a3d;p=thirdparty%2Fautomake.git Fixed bug in "--" option processing --- diff --git a/automake.in b/automake.in index 1d3c92964..5f6bc2273 100755 --- a/automake.in +++ b/automake.in @@ -77,6 +77,11 @@ while test $# -gt 0; do ;; -- ) # Stop option processing. + shift + while test $# -gt 0; do + mfiles="$mfiles $1" + shift + done break ;;