mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge branch 'maint-0.4.6'
This commit is contained in:
commit
de33be6e32
4
changes/ticket40369
Normal file
4
changes/ticket40369
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (build, cross-compilation):
|
||||
- Allow a custom "ar" for cross-compilation. Our previous build script
|
||||
had used the $AR environment variable in most places, but it missed
|
||||
one. Fixes bug 40369; bugfix on 0.4.5.1-alpha.
|
@ -25,7 +25,7 @@ for input in "$@"; do
|
||||
dir="$TMPDIR"/$(basename "$input" .a)
|
||||
mkdir "$dir"
|
||||
cd "$dir">/dev/null
|
||||
ar x "$abs"
|
||||
"${AR:-ar}" x "$abs"
|
||||
done
|
||||
|
||||
cd "$TMPDIR" >/dev/null
|
||||
|
Loading…
Reference in New Issue
Block a user