summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Rosin <peda@lysator.liu.se>2012-01-30 23:19:03 +0100
committerPeter Rosin <peda@lysator.liu.se>2012-01-30 23:19:03 +0100
commit2a2f57fc8b5a10d82c6797b62b2c9244144c300e (patch)
treeed934e465191546cef0c2ddac8dc17ad7f9b561e
parent41404a8feb40b1d5853a45e6f8306daee6dc6607 (diff)
downloadautomake-2a2f57fc8b5a10d82c6797b62b2c9244144c300e.tar.gz
ar-lib: ignore the verbose modifier instead of erroring out
* lib/ar-lib: A number of tests uses the v modifier when listing the archive content, ignore it to make them pass.
-rwxr-xr-xlib/ar-lib3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ar-lib b/lib/ar-lib
index 85d028f4f..c0286a4c9 100755
--- a/lib/ar-lib
+++ b/lib/ar-lib
@@ -2,7 +2,7 @@
# Wrapper for Microsoft lib.exe
me=ar-lib
-scriptversion=2012-01-04.17; # UTC
+scriptversion=2012-01-30.22; # UTC
# Copyright (C) 2010, 2012 Free Software Foundation, Inc.
# Written by Peter Rosin <peda@lysator.liu.se>.
@@ -165,6 +165,7 @@ do
r*) replace=yes ;;
c*) create=yes ;;
u*) ;; # TODO: don't ignore the update modifier
+ v*) ;; # TODO: don't ignore the verbose modifier
*)
func_error "unknown action specified"
;;