repo/extra/gnupg1/build

15 lines
241 B
Plaintext
Raw Normal View History

2019-10-02 15:22:16 +00:00
#!/bin/sh -e
2020-02-12 00:19:41 +00:00
# Fix build fail with GCC 10.
export CFLAGS="$CFLAGS -fcommon"
2019-10-02 15:22:16 +00:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
2020-05-08 09:00:38 +00:00
--libexecdir=/usr/lib \
2020-04-19 05:43:02 +00:00
--enable-noexecstack \
--disable-nls
2019-10-02 15:22:16 +00:00
make
make DESTDIR="$1" install