mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
Merge pull request #4190 from MilhouseVH/le92-fix-apache
apache-ant: create TOOLCHAIN/bin before copying file [backport]
This commit is contained in:
commit
4229e893b4
@ -1,5 +1,6 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
# Copyright (C) 2019-present Peter Vicman (peter.vicman@gmail.com)
|
# Copyright (C) 2019-present Peter Vicman (peter.vicman@gmail.com)
|
||||||
|
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="apache-ant"
|
PKG_NAME="apache-ant"
|
||||||
PKG_VERSION="1.10.6"
|
PKG_VERSION="1.10.6"
|
||||||
@ -18,8 +19,11 @@ make_host() {
|
|||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
./bootstrap/bin/ant -f fetch.xml -Ddest=optional
|
./bootstrap/bin/ant -f fetch.xml -Ddest=optional
|
||||||
./build.sh -Ddist.dir=${PKG_BUILD}/binary dist
|
./build.sh -Ddist.dir=${PKG_BUILD}/binary dist
|
||||||
|
|
||||||
cp binary/bin/ant ${TOOLCHAIN}/bin
|
|
||||||
cp -r binary/lib ${TOOLCHAIN}
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
makeinstall_host() {
|
||||||
|
mkdir -p ${TOOLCHAIN}/bin
|
||||||
|
cp binary/bin/ant ${TOOLCHAIN}/bin
|
||||||
|
cp -r binary/lib ${TOOLCHAIN}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user