summaryrefslogtreecommitdiff
path: root/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile
diff options
context:
space:
mode:
authorAlejandro Pulver <alepulver@FreeBSD.org>2008-02-16 18:05:38 +0000
committerAlejandro Pulver <alepulver@FreeBSD.org>2008-02-16 18:05:38 +0000
commit6b3f87a53a44256b4798be8583f2e7e044b3b083 (patch)
treecf8972f085c92501fea6358bcbeed45845b3493a /sysutils/fusefs-kmod/files/patch-fuse_module_Makefile
parentThis plugin provides many convenient functions (diff)
From [1]:
- Update to version 0.3.9-pre1.20080208 (agreed with author). - Download directly from the Mercurial reposirory (as tarball), to ease maintainence. - Remove all local patches as they were integrated. - Convert setup.sh into setup.sh.in, and use SUB_FILES instead of manual replacement. - Use kldload instead of rc.d script in setup.sh.in because the latter gives an error. - Remove "sleep 1" from rc.d script as now the FUSE daemon makes umount wait until disks are synced (synchronous unmount). - Update pkg-message. From [2]: - Pass SRC_BASE to the actual build (previously was only used by the port to detect if the source was installed, but not passed to the internal Makefile). PR: ports/120420 [1], ports/118112 [2] Submitted by: alepulver [1], Yuri Pankov <yuri.pankov@gmail.com> [2] Approved by: maintainer (timeout) [1], maintainer [2]
Diffstat (limited to 'sysutils/fusefs-kmod/files/patch-fuse_module_Makefile')
-rw-r--r--sysutils/fusefs-kmod/files/patch-fuse_module_Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile b/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile
deleted file mode 100644
index 4da86f55b6dc..000000000000
--- a/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
---- fuse_module/Makefile.orig 2007-06-19 14:35:22.000000000 +0200
-+++ fuse_module/Makefile 2007-08-16 18:31:50.000000000 +0200
-@@ -21,7 +21,14 @@
- .endif
-
- .if defined(KERNCONF)
--KERNCONFDIR= /usr/obj/usr/src/sys/${KERNCONF}
-+.if !defined(MAKEOBJDIRPREFIX)
-+MAKEOBJDIRPREFIX=/usr/obj
-+.endif
-+.if !defined(SRC_BASE)
-+SRC_BASE=/usr/src
-+.endif
-+KERNCONF1!= echo ${KERNCONF} | sed -e 's/ .*//g'
-+KERNCONFDIR= ${MAKEOBJDIRPREFIX}${SRC_BASE}/sys/${KERNCONF1}
- .endif
-
- .if defined(KERNCONFDIR)