diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2022-03-01 23:12:56 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-02 18:43:24 +0000 |
commit | be688d2a9b2467378139b423771c4fe3cfb4a176 (patch) | |
tree | c4ff0447e0b56acf29189ab5986291f60dd75937 /meta/recipes-devtools/quilt/quilt.inc | |
parent | bffe5b26f8a83af38126555b43c4fd3143aee043 (diff) | |
download | poky-be688d2a9b2467378139b423771c4fe3cfb4a176.tar.gz |
quilt: Disable external sendmail for deterministic build
Otherwise, the build results would be different w/o host's /usr/sbin/sendmail:
1) The /usr/share/quilt/compat/sendmail will be genrated if no
/usr/sbin/sendmail on host
2) No /usr/share/quilt/compat/sendmail if host's has /usr/sbin/sendmail
Use --without-sendmail to make it always generate /usr/share/quilt/compat/sendmail.
(From OE-Core rev: 3f9320816ac9f9ec8815754d1951cecb58612f70)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/quilt/quilt.inc')
-rw-r--r-- | meta/recipes-devtools/quilt/quilt.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/quilt/quilt.inc b/meta/recipes-devtools/quilt/quilt.inc index 19532051cd..07611e6d85 100644 --- a/meta/recipes-devtools/quilt/quilt.inc +++ b/meta/recipes-devtools/quilt/quilt.inc | |||
@@ -25,8 +25,9 @@ PATCHTOOL:class-native = "patch" | |||
25 | 25 | ||
26 | CLEANBROKEN = "1" | 26 | CLEANBROKEN = "1" |
27 | 27 | ||
28 | EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch" | 28 | EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch --without-sendmail" |
29 | EXTRA_OECONF:append:class-native = " --disable-nls" | 29 | EXTRA_OECONF:append:class-native = " --disable-nls" |
30 | |||
30 | EXTRA_AUTORECONF += "--exclude=aclocal" | 31 | EXTRA_AUTORECONF += "--exclude=aclocal" |
31 | 32 | ||
32 | CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column" | 33 | CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column" |