flex: disable bootstrap for cross builds

This commit is contained in:
Ella Stanforth 2022-04-21 16:10:21 +00:00
parent ddc5fc6dff
commit 1e86166a8a

View file

@ -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
} }