Andrew Geissler | 3eeda90 | 2023-05-19 10:14:02 -0500 | [diff] [blame^] | 1 | From 248e87869d748cfb72d3a5d3b2b91ad178172e30 Mon Sep 17 00:00:00 2001 |
| 2 | From: Vasileios Anagnostopoulos <anagnwstopoulos@hotmail.com> |
| 3 | Date: Tue, 9 May 2023 12:48:29 +0200 |
| 4 | Subject: [PATCH] Add the pkgconfigdir location |
| 5 | |
| 6 | This change is necessary, because while building asio in yocto the |
| 7 | compilation is failing and is complaining because the variable is |
| 8 | undefined |
| 9 | |
| 10 | Signed-off-by: Vasileios Anagnostopoulos <anagnwstopoulos@hotmail.com> |
| 11 | Upstream status: Submitted [https://github.com/chriskohlhoff/asio/pull/1294] |
| 12 | --- |
| 13 | asio/Makefile.am | 1 + |
| 14 | 1 file changed, 1 insertion(+) |
| 15 | |
| 16 | diff --git a/Makefile.am b/Makefile.am |
| 17 | index b7760851..bc4f75b3 100644 |
| 18 | --- a/Makefile.am |
| 19 | +++ b/Makefile.am |
| 20 | @@ -1,6 +1,7 @@ |
| 21 | AUTOMAKE_OPTIONS = foreign dist-bzip2 dist-zip |
| 22 | |
| 23 | pkgconfig_DATA = asio.pc |
| 24 | +pkgconfigdir = $(libdir)/pkgconfig |
| 25 | |
| 26 | SUBDIRS = include src |
| 27 | |
| 28 | -- |
| 29 | 2.34.1 |
| 30 | |