- makedist uses bz2 for expat code, instead of tar.gz.

git-svn-id: file:///svn/unbound/trunk@4643 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2018-04-23 07:45:18 +00:00
parent 2e70e3a0d3
commit f5a59fea5d
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
23 April 2018: Wouter
- makedist uses bz2 for expat code, instead of tar.gz.
20 April 2018: Wouter
- man page documentation for dns-over-tls forward-addr '#' notation.
- removed free from failed parse case.

View file

@ -272,7 +272,7 @@ if [ "$DOWIN" = "yes" ]; then
if test -n "$WINEXPAT"; then
info "Cross compile $WINEXPAT"
info "wxp: tar unpack"
(cd ..; gzip -cd $WINEXPAT) | tar xf - || error_cleanup "tar unpack of $WINEXPAT failed"
(cd ..; bzip2 -cd $WINEXPAT) | tar xf - || error_cleanup "tar unpack of $WINEXPAT failed"
wxpinstall="`pwd`/wxpinstall"
cd expat-* || error_cleanup "no expat-X dir in tarball"
info "wxp: configure"