aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/fusefs-kmod
diff options
context:
space:
mode:
authormm <mm@FreeBSD.org>2007-08-22 19:38:05 +0800
committermm <mm@FreeBSD.org>2007-08-22 19:38:05 +0800
commit4d02a1cbd92308da9e4064b0afcce0b0b4067452 (patch)
tree7c725a182262981e09f0bec106cc393e701755d9 /sysutils/fusefs-kmod
parentc7b6c56404b88b48a3b14c458cdd2128bf54939a (diff)
downloadfreebsd-ports-gnome-4d02a1cbd92308da9e4064b0afcce0b0b4067452.tar.gz
freebsd-ports-gnome-4d02a1cbd92308da9e4064b0afcce0b0b4067452.tar.zst
freebsd-ports-gnome-4d02a1cbd92308da9e4064b0afcce0b0b4067452.zip
- Add patch for better processing of KERNCONF variable on build time
PR: ports/115585 Submitted by: Marcin Wisnicki <mwisnicki+freebsd at gmail.com> Approved by: maintainer
Diffstat (limited to 'sysutils/fusefs-kmod')
-rw-r--r--sysutils/fusefs-kmod/files/patch-fuse_module_Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile b/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile
new file mode 100644
index 000000000000..bc9987f51296
--- /dev/null
+++ b/sysutils/fusefs-kmod/files/patch-fuse_module_Makefile
@@ -0,0 +1,12 @@
+--- 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,8 @@
+ .endif
+
+ .if defined(KERNCONF)
+-KERNCONFDIR= /usr/obj/usr/src/sys/${KERNCONF}
++KERNCONF1!= echo ${KERNCONF} | sed -e 's/ .*//g'
++KERNCONFDIR= /usr/obj/usr/src/sys/${KERNCONF1}
+ .endif
+
+ .if defined(KERNCONFDIR)