tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit d162b98548934f575123ca9bff45b85a9eb2bdf5
parent 461a3c732b70fb8525dfa660dcab1605f11d7517
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 19 Apr 2021 11:30:00 -0400

Merge branch 'maint-0.4.5' into maint-0.4.6

Diffstat:
Achanges/ticket40369 | 4++++
Mscripts/build/combine_libs | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/ticket40369 b/changes/ticket40369 @@ -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. diff --git a/scripts/build/combine_libs b/scripts/build/combine_libs @@ -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