diff options
author | Karl Berry <karl@freefriends.org> | 2010-09-03 06:07:11 -0700 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-09-03 06:07:11 -0700 |
commit | 9f0cd590f76f5e5e942fbd90b253c90ca7c80699 (patch) | |
tree | 2cea3292c948c49cc14368938f29554dbc618103 /build-aux | |
parent | 88952495193d0d183a50de8c75b58e7c5bda7b91 (diff) | |
download | gnulib-9f0cd590f76f5e5e942fbd90b253c90ca7c80699.tar.gz |
autoupdate
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/ar-lib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/ar-lib b/build-aux/ar-lib index ef03430372..4883fef747 100755 --- a/build-aux/ar-lib +++ b/build-aux/ar-lib @@ -2,7 +2,7 @@ # Wrapper for Microsoft lib.exe me=ar-lib -scriptversion=2010-08-12.16; # UTC +scriptversion=2010-09-02.19; # UTC # Copyright (C) 2010 Free Software # Foundation, Inc. @@ -219,7 +219,7 @@ elif test -n "$extract"; then esac done else - $AR -NOLOGO -LIST "$archive" | while read member + $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member do $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? done |