mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-18 03:37:08 +02:00
20 lines
710 B
Diff
20 lines
710 B
Diff
From: ptrcnull <git@ptrcnull.me>
|
|
Date: Sun, 15 Oct 2023 22:45:06 +0200
|
|
Subject: [PATCH] fix loading .pc file with new pkgconf
|
|
|
|
see https://gitlab.alpinelinux.org/alpine/aports/-/issues/15364
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 05465de..aff1899 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -1392,7 +1392,7 @@ libtcmalloc.pc: Makefile
|
|
echo '' >> "$@".tmp
|
|
echo 'Name: $(PACKAGE)' >> "$@".tmp
|
|
echo 'Version: $(VERSION)' >> "$@".tmp
|
|
- echo 'Summary: Performance tools for C++' >> "$@".tmp
|
|
+ echo 'Description: Performance tools for C++' >> "$@".tmp
|
|
echo 'URL: https://github.com/gperftools/gperftools' >> "$@".tmp
|
|
echo 'Requires:' >> "$@".tmp
|
|
echo 'Libs: -L$${libdir} -ltcmalloc' >> "$@".tmp
|