mirror of
https://git.yoctoproject.org/poky
synced 2026-03-17 04:39:40 +01:00
grub: don't autoreconf twice
do_configure() essentially calls autogen.sh to generate some sources and then autoreconf, but autogen.sh also calls autoreconf. Pass a magic variable so that autogen.sh doesn't autoreconf for us. (From OE-Core rev: 19e18446c09fef14c3dd54b0de12a8d21b280c93) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
bc2925b2d3
commit
6d5e13f65f
@@ -60,8 +60,9 @@ BUILD_LDFLAGS = ""
|
||||
export PYTHON = "python3"
|
||||
|
||||
do_configure_prepend() {
|
||||
( cd ${S}
|
||||
${S}/autogen.sh )
|
||||
cd ${S}
|
||||
FROM_BOOTSTRAP=1 ${S}/autogen.sh
|
||||
cd ${B}
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}_class-native = ""
|
||||
|
||||
Reference in New Issue
Block a user