summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/autotools.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-16 16:52:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-20 15:30:52 +0000
commit0769e8ef6b52584ef790744fe43973e56789e2b2 (patch)
treedbde9a4a20aa45670497a126e9d1939cd8d9a425 /meta/classes-recipe/autotools.bbclass
parent62ad6660e00d1cee0de2a1f2c49fa38d8d2fc3c5 (diff)
downloadpoky-0769e8ef6b52584ef790744fe43973e56789e2b2.tar.gz
bitbake.conf: Drop oldincludedir
Autoconf defines this as: "The directory for installing C header files for non-GCC compilers." Whilst this is something autoconf does allow changing, I find it hard to believe it has much use in the wild now and that headers don't get split like this in reality, it would probably only be useful on really old unixes.. The values are the same in our configuration anyway. Drop the value and just use includedir everywhere. (From OE-Core rev: 506c91cbc6a604a84e37e53ccff430436369802e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/autotools.bbclass')
-rw-r--r--meta/classes-recipe/autotools.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/autotools.bbclass b/meta/classes-recipe/autotools.bbclass
index 5ed21a3d68..1663307b06 100644
--- a/meta/classes-recipe/autotools.bbclass
+++ b/meta/classes-recipe/autotools.bbclass
@@ -76,7 +76,7 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
76 --localstatedir=${localstatedir} \ 76 --localstatedir=${localstatedir} \
77 --libdir=${libdir} \ 77 --libdir=${libdir} \
78 --includedir=${includedir} \ 78 --includedir=${includedir} \
79 --oldincludedir=${oldincludedir} \ 79 --oldincludedir=${includedir} \
80 --infodir=${infodir} \ 80 --infodir=${infodir} \
81 --mandir=${mandir} \ 81 --mandir=${mandir} \
82 --disable-silent-rules \ 82 --disable-silent-rules \