# HG changeset patch # User William Astle # Date 1479272682 25200 # Node ID 92cabf300986d3e5ab073adfa99aa0cfdb53dd10 # Parent c5841e2c745d3c1e36107e978178ff3ee7e7b496 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. diff -r c5841e2c745d -r 92cabf300986 extra/ar --- 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 $*