diff options
Diffstat (limited to 'repo/devel')
-rw-r--r-- | repo/devel/flex.xibuild | 2 | ||||
-rw-r--r-- | repo/devel/rustc.xibuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/repo/devel/flex.xibuild b/repo/devel/flex.xibuild index c937c2f..7523f07 100644 --- a/repo/devel/flex.xibuild +++ b/repo/devel/flex.xibuild @@ -8,7 +8,7 @@ SOURCE=https://github.com/westes/flex/releases/download/v$PKG_VER/flex-$PKG_VER. DESC="a utility for generating programs that recognize patterns in text" build () { - ./configure --prefix=/usr --docdir=/usr/share/doc/flex --disable-static CFLAGS=-liconv + ./configure --prefix=/usr --docdir=/usr/share/doc/flex --disable-static make } diff --git a/repo/devel/rustc.xibuild b/repo/devel/rustc.xibuild index 97f6b3f..c6c6777 100644 --- a/repo/devel/rustc.xibuild +++ b/repo/devel/rustc.xibuild @@ -51,7 +51,7 @@ EOF } build () { - export RUSTFLAGS="$RUSTFLAGS -C link-arg=-lffi -C link-arg=-liconv" && + export RUSTFLAGS="$RUSTFLAGS -C link-arg=-lffi" && python3 ./x.py build --exclude src/tools/miri } |