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~200 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=288af38f5d34d617aca404b73aa89aec833c241d;p=automake.git Fixed bug in "--" option processing --- diff --git a/automake.in b/automake.in index 1d3c9296..5f6bc227 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 ;;