serenity/Ports/libfuse/patches/0002-Install-examples.patch
implicitfield 90a46cdc98 Ports: Add libfuse
This is essentially the de facto way to interface with FUSE, and as
such, pretty much every port that uses FUSE in any way will depend on
this. Of all the examples that we compile, 'hello', 'hello_ll' and
'passthrough' have been verified to work.
2024-05-14 22:30:39 +02:00

31 lines
1,009 B
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: implicitfield <114500360+implicitfield@users.noreply.github.com>
Date: Mon, 5 Feb 2024 01:05:50 +0400
Subject: [PATCH] Install examples
---
example/meson.build | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/example/meson.build b/example/meson.build
index 3ee2630..4f39c68 100644
--- a/example/meson.build
+++ b/example/meson.build
@@ -20,14 +20,14 @@ threaded_examples = [ 'notify_inval_inode',
foreach ex : examples
executable(ex, ex + '.c',
dependencies: [ libfuse_dep ],
- install: false)
+ install: true)
endforeach
foreach ex : threaded_examples
executable(ex, ex + '.c',
dependencies: [ thread_dep, libfuse_dep ],
- install: false)
+ install: true)
endforeach
if not platform.endswith('bsd') and platform != 'dragonfly' and platform != 'serenity' and add_languages('cpp', required : false)