kiss-mfavila-small/ports/unofficial/stable/gdb/build

24 lines
371 B
Plaintext
Raw Normal View History

#!/bin/sh -e
2021-12-23 22:47:26 -05:00
# Remove -pie from ldflags to prevent build breakage.
LDFLAGS="$(echo $LDFLAGS|sed 's/-pie//')"
cat > makeinfo <<EOF
#!/bin/sh
printf 'makeinfo (GNU texinfo) 5.2\n'
EOF
chmod +x makeinfo
export PATH=$PATH:$PWD
mkdir _build
cd _build
../configure \
--prefix=/usr \
--without-installed-readline \
--disable-nls
make
make DESTDIR="$1" install