diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-24 09:32:22 +0800 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-24 09:32:22 +0800 |
commit | 1cae134ec1cbe95d417c7dac4feb107bf3520b87 (patch) | |
tree | e1ae8e167236bf742e91d76fd86448e342025311 /net/bounce/Makefile | |
parent | 2b68de51146c1ee83f7e1ce4fe2a2bfece330c74 (diff) | |
download | freebsd-ports-gnome-1cae134ec1cbe95d417c7dac4feb107bf3520b87.tar.gz freebsd-ports-gnome-1cae134ec1cbe95d417c7dac4feb107bf3520b87.tar.zst freebsd-ports-gnome-1cae134ec1cbe95d417c7dac4feb107bf3520b87.zip |
Install the bounce binary into ${PREFIX}/sbin, not ${PREFIX}/libexec.
PR: 19585
Submitted by: Nathan Yoder <njyoder@gummibears.nu>
Approved by: maintainer
Diffstat (limited to 'net/bounce/Makefile')
-rw-r--r-- | net/bounce/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bounce/Makefile b/net/bounce/Makefile index aab7c30bb68c..d42bc68a7935 100644 --- a/net/bounce/Makefile +++ b/net/bounce/Makefile @@ -27,6 +27,6 @@ do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${DISTNAME} ${DISTNAME}.c) do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/libexec + ${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/sbin .include <bsd.port.mk> |