Merge pull request #1088 from fewtarius/dev

fix oops.
This commit is contained in:
fewtarius 2023-02-22 07:57:48 -05:00 committed by GitHub
commit 096e9615b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ make_host() {
export JAVA_HOME=$(get_build_dir jdk-zulu)
### Work around for down/missing ftp server.
TMPCACHE="${HOME}/.ant/tempcache"
TMPCACHE="${ROOT}/.ant/tempcache"
if [ ! -d "${TMPCACHE}" ]
then
mkdir -p ${TMPCACHE}
@ -24,11 +24,11 @@ make_host() {
if [ ! -e "${TMPCACHE}/NetRexx.zip" ]
then
curl -Lo ${TMPCACHE}/NetRexx.zip https://public.dhe.ibm.com/software/awdtools/netrexx/
curl -Lo ${TMPCACHE}/NetRexx.zip https://public.dhe.ibm.com/software/awdtools/netrexx/NetRexx.zip
fi
./bootstrap.sh
./bootstrap/bin/ant -f fetch.xml -Ddest=optional
./bootstrap/bin/ant -f fetch.xml -Ddest=optional -Dtemp.dir=${TMPCACHE}
./build.sh -Ddist.dir=${PKG_BUILD}/binary dist
)
}