kiss-mfavila-large/ports/9base-mod/build

17 lines
315 B
Plaintext
Raw Normal View History

#!/bin/sh -e
2021-05-11 04:07:37 +00:00
# Fix a compile-time bug.
export CFLAGS="$CFLAGS -fcommon"
2021-05-11 04:07:37 +00:00
# Set what utils to make.
cp makefile.mid ./Makefile
make PREFIX=/usr
make PREFIX=/usr DESTDIR="$1" install
# Prevent 9yacc from actually installing
for file in /usr/bin/yacc /usr/yacc /usr/share/man/man1/yacc.1
2021-05-11 04:07:37 +00:00
do
rm -rf "$1$file"
done