15 lines
241 B
Plaintext
15 lines
241 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# Fix build fail with GCC 10.
|
||
|
export CFLAGS="$CFLAGS -fcommon"
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--libexecdir=/usr/lib \
|
||
|
--enable-noexecstack \
|
||
|
--disable-nls
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|