Mercurial > hg > index.cgi
diff extra/ar @ 429:92cabf300986
Make the "ar" wrapper use the new --nopaths option
The "ar" wrapper used to make lwar behave more like "gnu ar" for use with
gcc6809 now uses the --nopaths option to make archives with just filenames
in them for compatibility.
author | William Astle <lost@l-w.ca> |
---|---|
date | Tue, 15 Nov 2016 22:04:42 -0700 |
parents | 84eb35251849 |
children |
line wrap: on
line diff
--- a/extra/ar Tue Nov 15 21:47:38 2016 -0700 +++ b/extra/ar Tue Nov 15 22:04:42 2016 -0700 @@ -61,4 +61,6 @@ fi # Run the real lwar with translated options. -exec lwar $options $* +# --nopaths is given to get the proper standard "ar" behaviour +# which doesn't store path names +exec lwar --nopaths $options $*