21 lines
594 B
Diff
21 lines
594 B
Diff
From e3df1afc8d2181815056a305bb596e64b388894c Mon Sep 17 00:00:00 2001
|
|
From: pchome <pchome@users.noreply.github.com>
|
|
Date: Sun, 13 Apr 2025 17:36:02 +0300
|
|
Subject: [PATCH] Fix pkgconfig install dir
|
|
|
|
---
|
|
meson.build | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index 06d7117..4a1f9d2 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -18,5 +18,6 @@ pkgconfig.generate(
|
|
filebase: meson.project_name(),
|
|
name: meson.project_name(),
|
|
description: 'Vulkan layers library',
|
|
- subdirs: '.'
|
|
+ subdirs: '.',
|
|
+ install_dir: 'share/pkgconfig'
|
|
)
|