gentoo-ebuilds/sci-mathematics/flint/files/flint-3.1.3_p1-fix-pc-location.patch
Michael Orlitzky 02b9512fa2
sci-mathematics/flint: fix the flint.pc location again
I fixed this upstream a while ago, but it's missing from the current
release, so we need to patch it again. Straight to stable because we've
done this all before.

Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
2024-10-14 08:44:24 -04:00

26 lines
1,021 B
Diff

From f4e0dfda90f6574048578f112bea1013d54f0987 Mon Sep 17 00:00:00 2001
From: Michael Orlitzky <michael@orlitzky.com>
Date: Sun, 10 Mar 2024 21:48:51 -0400
Subject: [PATCH] CMakeLists.txt: install the pkg-config file to the configured
libdir
Currently it installs to lib/pkgconfig, which can be incorrect on
systems where (for example) the normal libdir is lib64 and "lib" is
reserved for 32-bit libraries.
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 30935cef47..d8dfee38df 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -537,7 +537,7 @@ set(PACKAGE_NAME ${PROJECT_NAME})
set(PACKAGE_VERSION ${PROJECT_VERSION})
configure_file(flint.pc.in flint.pc @ONLY)
-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/flint.pc DESTINATION lib/pkgconfig)
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/flint.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
if(BUILD_TESTING)
set(FLINT_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src) # To get src/test/main