Files
nixpkgs/pkgs/by-name/li/libvdpau/tracing.patch
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

25 lines
932 B
Diff

diff --git a/src/vdpau_wrapper.c b/src/vdpau_wrapper.c
index 79dcb94..6249af4 100644
--- a/src/vdpau_wrapper.c
+++ b/src/vdpau_wrapper.c
@@ -185,8 +185,7 @@ static VdpStatus _vdp_open_driver(
if (vdpau_trace && atoi(vdpau_trace)) {
SetDllHandle * set_dll_handle;
- _vdp_trace_dll = dlopen(VDPAU_MODULEDIR "/libvdpau_trace.so.1",
- RTLD_NOW | RTLD_GLOBAL);
+ _vdp_trace_dll = dlopen("libvdpau_trace.so.1", RTLD_NOW | RTLD_GLOBAL);
if (!_vdp_trace_dll) {
fprintf(stderr, "Failed to open VDPAU trace library %s\n", dlerror());
_VDP_ERROR_BREAKPOINT();
diff --git a/trace/meson.build b/trace/meson.build
index 5381b8b..4af408f 100644
--- a/trace/meson.build
+++ b/trace/meson.build
@@ -4,5 +4,4 @@ trace = shared_library('vdpau_trace',
dependencies : libdl,
version : '1.0.0',
install : true,
- install_dir : moduledir,
)