summaryrefslogtreecommitdiffstats
path: root/patches/ncurses-5.9/0001-teach-ncurses-config-about-sysroot.patch
blob: 0730dc9afffba83584f8d48fc41040122c98c16a (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
41
42
43
44
45
46
47
48
49
50
51
52
From: Marc Kleine-Budde <mkl@pengutronix.de>
Date: Thu, 17 Mar 2011 13:34:53 +0100
Subject: [PATCH] teach ncurses-config about sysroot

This patch teaches ncurses-config about sysroot

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 misc/ncurses-config.in |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/misc/ncurses-config.in b/misc/ncurses-config.in
index a9c0ac5..08d44bb 100644
--- a/misc/ncurses-config.in
+++ b/misc/ncurses-config.in
@@ -73,10 +73,10 @@ while test $# -gt 0; do
 	--cflags)
 		INCS=
 		if test "x@WITH_OVERWRITE@" = xno ; then
-			INCS="$INCS -I${includedir}/${THIS}"
+			INCS="$INCS -I${SYSROOT}${includedir}/${THIS}"
 		fi
-		if test "${includedir}" != /usr/include ; then
-			INCS="$INCS -I${includedir}"
+		if test "${SYSROOT}${includedir}" != /usr/include ; then
+			INCS="$INCS -I${SYSROOT}${includedir}"
 		fi
 		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
 			$INCS
@@ -85,11 +85,11 @@ ENDECHO
 	--libs)
 		if test @TINFO_NAME@ = @LIB_NAME@ ; then
 		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
-			-L$libdir @EXTRA_LDFLAGS@ -l${THIS} @LIBS@
+			-L${SYSROOT}$libdir @EXTRA_LDFLAGS@ -l${THIS} @LIBS@
 ENDECHO
 		else
 		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
-			-L$libdir @EXTRA_LDFLAGS@ -l${THIS} -l${TINFO_LIB} @LIBS@
+			-L${SYSROOT}$libdir @EXTRA_LDFLAGS@ -l${THIS} -l${TINFO_LIB} @LIBS@
 ENDECHO
 		fi
 		;;
@@ -114,7 +114,7 @@ ENDECHO
 		echo "${includedir}"
 		;;
 	--libdir)
-		echo "${libdir}"
+		echo "${SYSROOT}${libdir}"
 		;;
 	--mandir)
 		echo "${mandir}"