aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2007-09-03 08:48:04 +0000
committerBeech Rintoul <beech@FreeBSD.org>2007-09-03 08:48:04 +0000
commit209e900b99d198f1b03285a2dbd2f4742144a74b (patch)
tree0736620955635f41e415f5810b78e28b73e0b699
parent87466b8058b410af8f65402ccf1cef696f153de3 (diff)
downloadports-209e900b99d198f1b03285a2dbd2f4742144a74b.tar.gz
ports-209e900b99d198f1b03285a2dbd2f4742144a74b.zip
- Add check for linprocfs before configure.
Requested by: Tony Shadwick <tshadwick@oss-solutions.com> (maintainer) Approved by: sat (mentor)
Notes
Notes: svn path=/head/; revision=198678
-rw-r--r--sysutils/htop/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/htop/Makefile b/sysutils/htop/Makefile
index 251ab6c40f36..ef5ee306be50 100644
--- a/sysutils/htop/Makefile
+++ b/sysutils/htop/Makefile
@@ -17,7 +17,7 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-proc=/compat/linux/proc
MAN1= htop.1
-post-install:
- @${CAT} ${PKGMESSAGE}
+pre-configure:
+ @[ -f /compat/linux/proc/stat ] || { ${CAT} ${PKGMESSAGE}; ${FALSE}; }
.include <bsd.port.mk>