diff options
author | beech <beech@FreeBSD.org> | 2007-09-03 16:48:04 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2007-09-03 16:48:04 +0800 |
commit | 7f85c29e0f3794fea710901fb8b25dcb39624c58 (patch) | |
tree | 8428ee3db56cafdb5a811ab40d46028626b0c873 /sysutils/htop | |
parent | 5905932d9a727b80e7dc7504400ce22032353130 (diff) | |
download | freebsd-ports-gnome-7f85c29e0f3794fea710901fb8b25dcb39624c58.tar.gz freebsd-ports-gnome-7f85c29e0f3794fea710901fb8b25dcb39624c58.tar.zst freebsd-ports-gnome-7f85c29e0f3794fea710901fb8b25dcb39624c58.zip |
- Add check for linprocfs before configure.
Requested by: Tony Shadwick <tshadwick@oss-solutions.com> (maintainer)
Approved by: sat (mentor)
Diffstat (limited to 'sysutils/htop')
-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> |