diff options
author | dwcjr <dwcjr@FreeBSD.org> | 2001-06-10 07:14:03 +0800 |
---|---|---|
committer | dwcjr <dwcjr@FreeBSD.org> | 2001-06-10 07:14:03 +0800 |
commit | 9cc1961b147f0a10fa3b2719f4c7c0f020894635 (patch) | |
tree | 3133e2ddeb39c94d213b37c297d5b5536404352d /security | |
parent | 53a4ddbf0dc84bcea819c4a28117ab3ddebb8487 (diff) | |
download | freebsd-ports-graphics-9cc1961b147f0a10fa3b2719f4c7c0f020894635.tar.gz freebsd-ports-graphics-9cc1961b147f0a10fa3b2719f4c7c0f020894635.tar.zst freebsd-ports-graphics-9cc1961b147f0a10fa3b2719f4c7c0f020894635.zip |
Add patch-Makefile.in to patch hard coded /usr/local in Makefile.in
PR: 27997
Submitted by: Jeff Palmer <scorpio@drkshdw.org>
Reviewed by: will
Diffstat (limited to 'security')
-rw-r--r-- | security/ident2/files/patch-Makefile.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/security/ident2/files/patch-Makefile.in b/security/ident2/files/patch-Makefile.in new file mode 100644 index 00000000000..4108eb8b6c1 --- /dev/null +++ b/security/ident2/files/patch-Makefile.in @@ -0,0 +1,13 @@ +--- Makefile.in.orig Sat Jun 9 17:44:19 2001 ++++ Makefile.in Sat Jun 9 17:44:36 2001 +@@ -36,8 +36,8 @@ + doc_format = @doc_format@ + + PROG = ident2 +-BINDIR = /usr/local/sbin +-MANDIR = /usr/local/man/man8 ++BINDIR = ${prefix}/sbin ++MANDIR = ${prefix}/man/man8 + + SOURCES=ident2.c common.c daemon.c m_${MACHTARGET}.c + OBJS=ident2.o common.o daemon.o machine.o |