repo/core/flex/build

15 lines
238 B
Plaintext
Raw Normal View History

2019-05-18 16:06:11 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
ac_cv_func_malloc_0_nonnull=yes \
ac_cv_func_realloc_0_nonnull=yes
make
2023-03-02 14:40:00 +00:00
make DESTDIR="$1" install
2020-05-29 10:45:19 +00:00
ln -s flex "$1/usr/bin/lex"
2021-07-06 11:25:18 +00:00
# Remove READMEs and such.
rm -rf "$1/usr/share/doc"