summaryrefslogtreecommitdiff
blob: fde03f1d56f48b06423a0745571ceaaf9d0ec0a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From 6af3253a91d8844f16924a77349f162060e038fa Mon Sep 17 00:00:00 2001
From: Lars Wendler <polynomial-c@gentoo.org>
Date: Thu, 13 Feb 2020 11:51:09 +0100
Subject: [PATCH] Don't bleed user LDFLAGS into Libs

Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
---
 misc/gen-pkgconfig.in  | 2 +-
 misc/ncurses-config.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/misc/gen-pkgconfig.in b/misc/gen-pkgconfig.in
index 5a71ab02..9fa2e0a1 100644
--- a/misc/gen-pkgconfig.in
+++ b/misc/gen-pkgconfig.in
@@ -83,7 +83,7 @@ if [ "$includedir" != "/usr/include" ]; then
 fi
 
 lib_flags=
-for opt in -L$libdir @LDFLAGS@ @EXTRA_PKG_LDFLAGS@ @LIBS@
+for opt in -L$libdir @LIBS@
 do
 	case $opt in
 	-l*) # LIBS is handled specially below
diff --git a/misc/ncurses-config.in b/misc/ncurses-config.in
index eae39a51..a25e2787 100644
--- a/misc/ncurses-config.in
+++ b/misc/ncurses-config.in
@@ -101,7 +101,7 @@ fi
 # There is no portable way to find the list of standard library directories. 
 # Require a POSIX shell anyway, to keep this simple.
 lib_flags=
-for opt in -L$libdir @LDFLAGS@ @EXTRA_PKG_LDFLAGS@ $LIBS
+for opt in -L$libdir $LIBS
 do
 	case $opt in
 	-specs*) # ignore linker specs-files which were used to build library
-- 
2.30.0