flex: disable bootstrap for cross builds
This commit is contained in:
parent
ddc5fc6dff
commit
1e86166a8a
1 changed files with 4 additions and 1 deletions
|
@ -9,10 +9,13 @@ fetch() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $pkgname-$pkgver
|
cd $pkgname-$pkgver
|
||||||
|
[ -z "$WITH_CROSS" ] || extra_flags=--disable-bootstrap
|
||||||
|
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--build=$HOST_TRIPLE \
|
--build=$HOST_TRIPLE \
|
||||||
--host=$TRIPLE
|
--host=$TRIPLE \
|
||||||
|
$extra_flags
|
||||||
|
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue