Mercurial > hg > index.cgi
comparison 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 |
comparison
equal
deleted
inserted
replaced
428:c5841e2c745d | 429:92cabf300986 |
---|---|
59 echo "ar (m6809): no options given" | 59 echo "ar (m6809): no options given" |
60 exit 1 | 60 exit 1 |
61 fi | 61 fi |
62 | 62 |
63 # Run the real lwar with translated options. | 63 # Run the real lwar with translated options. |
64 exec lwar $options $* | 64 # --nopaths is given to get the proper standard "ar" behaviour |
65 # which doesn't store path names | |
66 exec lwar --nopaths $options $* |