diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-03 13:05:22 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-03 13:05:22 +0800 |
commit | 5d5b1273df61e0b2f1f93db17b280487a6337e44 (patch) | |
tree | d4e232defc1be0a600a2cd42cfb10bdc64e52721 /sysutils/fusefs-kmod | |
parent | a8e77f707609e726385cc995d484f6ac6b80ee7c (diff) | |
download | freebsd-ports-gnome-5d5b1273df61e0b2f1f93db17b280487a6337e44.tar.gz freebsd-ports-gnome-5d5b1273df61e0b2f1f93db17b280487a6337e44.tar.zst freebsd-ports-gnome-5d5b1273df61e0b2f1f93db17b280487a6337e44.zip |
Sysutils/fusefs-kmod requires also userland sources
Fusefs-kmod says it requires kernel sources, but it also requires
userland sources:
Warning: Object directory not changed from original /var/ports/usr/ports/sysutils/fusefs-kmod/work/fuse4bsd-0.3.9-pre1/mount_fusefs
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/sbin/mount -I../include -c mount_fusefs.c
^^^^^^^^^^^^^^^^^^^^^^
mount_fusefs.c:50:21: mntopts.h: No such file or directory
mount_fusefs.c:57: error: elements of array `mopts' have incomplete type
PR: ports/116196
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Approved by: maintainer timeout
Diffstat (limited to 'sysutils/fusefs-kmod')
-rw-r--r-- | sysutils/fusefs-kmod/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysutils/fusefs-kmod/Makefile b/sysutils/fusefs-kmod/Makefile index d70fb4801270..ae16095e5101 100644 --- a/sysutils/fusefs-kmod/Makefile +++ b/sysutils/fusefs-kmod/Makefile @@ -61,6 +61,9 @@ IGNORE= requires FreeBSD 6 or above. Please consider porting it to 5.x or even .if !exists(${SRC_BASE}/sys/Makefile) IGNORE= requires the Kernel source to be installed. Set SRC_BASE if it is not in /usr/src .endif +.if !exists(${SRC_BASE}/sbin/mount) +IGNORE= requires the userland sources to be installed. Set SRC_BASE if it is not in /usr/src +.endif post-patch: @${REINPLACE_CMD} -e 's/deplate.rb/deplate/g' \ |