diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2007-09-03 16:48:04 +0800 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2007-09-03 16:48:04 +0800 |
commit | 209e900b99d198f1b03285a2dbd2f4742144a74b (patch) | |
tree | 0736620955635f41e415f5810b78e28b73e0b699 /sysutils | |
parent | 87466b8058b410af8f65402ccf1cef696f153de3 (diff) | |
download | freebsd-ports-gnome-209e900b99d198f1b03285a2dbd2f4742144a74b.tar.gz freebsd-ports-gnome-209e900b99d198f1b03285a2dbd2f4742144a74b.tar.zst freebsd-ports-gnome-209e900b99d198f1b03285a2dbd2f4742144a74b.zip |
- Add check for linprocfs before configure.
Requested by: Tony Shadwick <tshadwick@oss-solutions.com> (maintainer)
Approved by: sat (mentor)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/htop/Makefile | 4 |
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> |