diff options
author | mm <mm@FreeBSD.org> | 2014-01-19 20:07:21 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2014-01-19 20:07:21 +0800 |
commit | 630a8be57b7157b1205ddce6002e7a8c180fb4da (patch) | |
tree | ce748c6f6632bc0514799b5a985c39cc1a4ca75c /net/relayd | |
parent | ccb3d7a63d85416eb24213824711e60828055dd3 (diff) | |
download | freebsd-ports-gnome-630a8be57b7157b1205ddce6002e7a8c180fb4da.tar.gz freebsd-ports-gnome-630a8be57b7157b1205ddce6002e7a8c180fb4da.tar.zst freebsd-ports-gnome-630a8be57b7157b1205ddce6002e7a8c180fb4da.zip |
Add STAGE support to net/relayd
Diffstat (limited to 'net/relayd')
-rw-r--r-- | net/relayd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/relayd/Makefile b/net/relayd/Makefile index 9b5787834efb..a973d0498026 100644 --- a/net/relayd/Makefile +++ b/net/relayd/Makefile @@ -30,7 +30,6 @@ GROUPS= _relayd OPTIONS_DEFINE= LIBEVENT_STATIC LIBEVENT_STATIC_DESC= Build with static libevent -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${PORT_OPTIONS:MLIBEVENT_STATIC} @@ -54,8 +53,9 @@ post-patch: post-install: @${INSTALL_DATA} ${WRKSRC}/../etc/relayd.conf \ - ${PREFIX}/etc/relayd.conf.sample - @${CP} -n ${PREFIX}/etc/relayd.conf.sample \ - ${PREFIX}/etc/relayd.conf || ${TRUE} + ${STAGEDIR}${PREFIX}/etc/relayd.conf.sample + @${CP} -n ${STAGEDIR}${PREFIX}/etc/relayd.conf.sample \ + ${STAGEDIR}${PREFIX}/etc/relayd.conf || ${TRUE} .include <bsd.port.post.mk> + |