mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
10 lines
233 B
Bash
10 lines
233 B
Bash
#!/bin/sh
|
|
|
|
F=${WRKSRC}/Makefile
|
|
|
|
chmod +w $F || exit 1;
|
|
|
|
echo "BINDIR= /usr/local/bin" >> $F || exit 1;
|
|
echo "TOPDIR= /usr/local/lib" >> $F
|
|
echo "MANDIR=/usr/local/man/man1" >> $F
|
|
echo "CCOPT= -Wall -Wno-implicit -Wno-comment" >> $F |