Files
composefs/001-enable-experimental-tools.patch
Richard Rahl 325eb5d8da - create an experimental package for things which are not yet stable
* add patch 001-enable-experimental-tools.patch
- BR libcrypto rather than openssl directly
- fix leap builds by fixing the shebang (we need the newer python311 stack
  * add patch 002-fix-leap-tests.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/composefs?expand=0&rev=12
2025-02-19 21:38:11 +00:00

20 lines
615 B
Diff

diff -rub composefs-1.0.8/tools/meson.build composefs-1.0.8-patched/tools/meson.build
--- composefs-1.0.8/tools/meson.build 2025-01-02 18:53:04.000000000 +0100
+++ composefs-1.0.8-patched/tools/meson.build 2025-02-19 15:08:22.452392235 +0100
@@ -31,13 +31,13 @@
'composefs-dump.c',
link_with: [libcomposefs_internal],
dependencies : [libcomposefs_dep],
- install : false,
+ install : true,
)
if fuse3_dep.found()
executable('composefs-fuse',
'cfs-fuse.c',
dependencies : [libcomposefs_dep, fuse3_dep],
- install : false,
+ install : true,
)
endif