]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.in: Break out of the command argument parse loop when
authorGary V. Vaughan <gary@gnu.org>
Fri, 9 Jan 2004 16:55:03 +0000 (16:55 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 9 Jan 2004 16:55:03 +0000 (16:55 +0000)
-- is encountered.

ChangeLog
libtoolize.in

index 100d9b310165a448a7b87124751e71ae234c0f60..2ec9a070ef231989bcde7b6c95e3d15dada21929 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-09  Gary V. Vaughan  <gary@gnu.org>
+
+       * libtoolize.in: Break out of the command argument parse loop when
+       -- is encountered.
+
 2004-01-08  Gary V. Vaughan  <gary@gnu.org>
 
        * libtoolize.in (func_copy_all_files): s/test "x/test "X/ to keep
index fd819276685f5ac199f5254b0c58fa8e94bc3f18..6de3d0b5df4a2bc2ee850a30bf04a0515a5c0b8b 100644 (file)
@@ -176,7 +176,7 @@ func_fatal_help ()
 
       --version)       sed "$my_sed_version" < $0;     exit 0  ;;
       --help)          sed "$my_sed_help" < $0;        exit 0  ;;
-      --)              shift ;;
+      --)              shift; break                            ;;
       -*)              func_fatal_help "unrecognized option \`$1'"     ;;
       *)               func_fatal_help "too many arguments"            ;;
     esac