mirror of
https://git.yoctoproject.org/poky
synced 2026-03-15 03:39:42 +01:00
python: update upstream-status for patches binutils: update upstream-status for patches gcc 4.5.1 4.6.0: update upstream-status for patches autoconf: update upstream-status for patches automake: update upstream-status for patches bison: update upstream-status for patches distcc: update upstream-status of patches fstests: update upstream-status for patches gdb: update upstream-status of patches intltool: update upstream-status of patches libtool: update upstream status of patches linux-libc-headers: update upstream-status for patches make: update upstream-status for patches perl: update upstream-status for patches python-pycurl: update upstream-status for patches python-pygobject: update upstream status for patches python-pyrex: update upstream-status for patches quilt: update upstream-status of patches tcl: update upstream-status for patches gnu-config: update upstream-status for patches gmp: update upstream-status for patches (From OE-Core rev: a62fa9b213b09bf48c48499d2e3c66a9ee306deb) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
Upstream-Status: Pending
|
|
|
|
Poky provides a list of site files in CONFIG_SITE whereas autoconf
|
|
only expects one file. This patch changes autoconf to accept a list of
|
|
them.
|
|
|
|
RP 1/2/10
|
|
|
|
Index: autoconf-2.65/lib/autoconf/general.m4
|
|
===================================================================
|
|
--- autoconf-2.65.orig/lib/autoconf/general.m4 2010-02-01 12:41:32.329073138 +0000
|
|
+++ autoconf-2.65/lib/autoconf/general.m4 2010-02-01 12:41:56.769040799 +0000
|
|
@@ -1863,17 +1863,10 @@
|
|
m4_define([AC_SITE_LOAD],
|
|
[# Prefer an explicitly selected file to automatically selected ones.
|
|
ac_site_file1=NONE
|
|
-ac_site_file2=NONE
|
|
if test -n "$CONFIG_SITE"; then
|
|
ac_site_file1=$CONFIG_SITE
|
|
-elif test "x$prefix" != xNONE; then
|
|
- ac_site_file1=$prefix/share/config.site
|
|
- ac_site_file2=$prefix/etc/config.site
|
|
-else
|
|
- ac_site_file1=$ac_default_prefix/share/config.site
|
|
- ac_site_file2=$ac_default_prefix/etc/config.site
|
|
fi
|
|
-for ac_site_file in "$ac_site_file1" "$ac_site_file2"
|
|
+for ac_site_file in $ac_site_file1
|
|
do
|
|
test "x$ac_site_file" = xNONE && continue
|
|
if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
|