]> sourceware.org Git - automake.git/commitdiff
Fixed bug in "--" option processing
authorTom Tromey <tromey@redhat.com>
Thu, 23 Nov 1995 17:58:08 +0000 (17:58 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 23 Nov 1995 17:58:08 +0000 (17:58 +0000)
automake.in

index 1d3c92964041343c69b49bd494e900998904c11e..5f6bc22738b2121b265aae0cd9e7140e79b421e6 100755 (executable)
@@ -77,6 +77,11 @@ while test $# -gt 0; do
        ;;
 
     -- ) # Stop option processing.
+       shift
+       while test $# -gt 0; do
+         mfiles="$mfiles $1"
+         shift
+       done
        break
        ;;
 
This page took 0.029652 seconds and 5 git commands to generate.