Commit d162b985 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Merge branch 'maint-0.4.5' into maint-0.4.6

parents 461a3c73 cd75eac7
Loading
Loading
Loading
Loading

changes/ticket40369

0 → 100644
+4 −0
Original line number Diff line number Diff line
  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.
+1 −1
Original line number Diff line number Diff line
@@ -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