2019-05-18 10:06:11 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-static \
|
|
|
|
--enable-shared \
|
|
|
|
ac_cv_func_malloc_0_nonnull=yes \
|
|
|
|
ac_cv_func_realloc_0_nonnull=yes
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
2020-05-29 04:45:19 -06:00
|
|
|
|
|
|
|
ln -s flex "$1/usr/bin/lex"
|