1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

make port adhere to ${PREFIX}

This commit is contained in:
John-Mark Gurney 1999-06-14 05:01:45 +00:00
parent b699cdbfcb
commit 0e1e6ea40a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=19468

View File

@ -1,8 +1,8 @@
--- ../rinetd.orig/Makefile Mon Mar 1 13:41:50 1999
+++ Makefile Fri Jun 11 19:56:19 1999
+++ Makefile Sat Jun 12 12:54:48 1999
@@ -1,9 +1,14 @@
-CFLAGS=-DLINUX -g
+CFLAGS+=-I.
+CFLAGS+=-I. -DLINUX
-rinetd: rinetd.o match.o
- gcc rinetd.o match.o -o rinetd
@ -17,6 +17,6 @@
install: rinetd
- install -m 700 rinetd /usr/sbin
- install -m 644 rinetd.8 /usr/man/man8
+ install -C -o root -g wheel -m 700 rinetd /usr/local/sbin
+ install -C -o root -g wheel -m 644 rinetd.8 /usr/local/man/man8
+ install -C -o root -g wheel -m 700 rinetd ${PREFIX}/sbin
+ install -C -o root -g wheel -m 644 rinetd.8 ${PREFIX}/man/man8