diff options
author | clsung <clsung@FreeBSD.org> | 2006-12-14 09:12:56 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-12-14 09:12:56 +0800 |
commit | cc7fe672cb3c42016363eb785577d7301b8db153 (patch) | |
tree | 2b66b4a067a84aa6457f0a042ddcb6afd993d3b1 /security | |
parent | 38d54b5d7b597d1ac83ff00e85f8539b6dde263e (diff) | |
download | freebsd-ports-gnome-cc7fe672cb3c42016363eb785577d7301b8db153.tar.gz freebsd-ports-gnome-cc7fe672cb3c42016363eb785577d7301b8db153.tar.zst freebsd-ports-gnome-cc7fe672cb3c42016363eb785577d7301b8db153.zip |
- fix the bug =>
The port security/blocksshd has the location of the config file hard-coded
into it as "/etc/blocksshd.conf", while the port places the config file
into "/usr/local/etc/blocksshd.conf"
- bump PORTREVISION
PR: ports/106629
Submitted by: Rob B<rbyrnes_AT_mailshack dot com>
Diffstat (limited to 'security')
-rw-r--r-- | security/blocksshd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/blocksshd/Makefile b/security/blocksshd/Makefile index 5501f20e9e6c..386094ce14b2 100644 --- a/security/blocksshd/Makefile +++ b/security/blocksshd/Makefile @@ -7,7 +7,7 @@ PORTNAME= blocksshd PORTVERSION= 1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= blocksshd @@ -28,5 +28,6 @@ MAN1= blocksshd.1 post-patch: @${CHMOD} 755 ${WRKSRC}/init @${REINPLACE_CMD} -e 's|^MANCOMPRESS = .gz||g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|/etc/blocksshd.conf|${PREFIX}/etc/blocksshd.conf|g' ${WRKSRC}/blocksshd .include <bsd.port.mk> |