summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-12-08 15:18:53 -0800
committerKhem Raj <raj.khem@gmail.com>2025-12-08 15:23:02 -0800
commitaa758279f5ec0b5f19c61d050b9d516132367706 (patch)
tree8a9435a700e5e50f37d28cfe73964967d5d30328
parentb98efe111c5b4b907a84da224b951f50415f16e1 (diff)
downloadmeta-openembedded-aa758279f5ec0b5f19c61d050b9d516132367706.tar.gz
php: Provide cached value for sendmail program
Left to its own volition, configure goes on a hunt in usual paths in /usr which means it pokes at build system for sendmail existence. This could also be under different paths e.g. /usr/lib or /usr/sbin depending upong build distro The paths where sendmail will be installed on target is usual paths e.g. /bin or /usr/bin on OE, which are added to program search paths anyway. This fixes reproducibility issues, since this string gets its way into the PHP binaries. Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/php/php_8.5.0.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/php/php_8.5.0.bb b/meta-oe/recipes-devtools/php/php_8.5.0.bb
index 412ffd9f06..6db7ee7c82 100644
--- a/meta-oe/recipes-devtools/php/php_8.5.0.bb
+++ b/meta-oe/recipes-devtools/php/php_8.5.0.bb
@@ -72,6 +72,7 @@ EXTRA_OECONF = "--enable-mbstring \
72 --with-bz2=${STAGING_DIR_TARGET}${exec_prefix} \ 72 --with-bz2=${STAGING_DIR_TARGET}${exec_prefix} \
73 --with-config-file-path=${sysconfdir}/php/apache2-php${PHP_MAJOR_VERSION} \ 73 --with-config-file-path=${sysconfdir}/php/apache2-php${PHP_MAJOR_VERSION} \
74 ${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'ac_cv_c_bigendian_php=no', 'ac_cv_c_bigendian_php=yes', d)} \ 74 ${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'ac_cv_c_bigendian_php=no', 'ac_cv_c_bigendian_php=yes', d)} \
75 ac_cv_path_PROG_SENDMAIL=sendmail \
75 ${COMMON_EXTRA_OECONF} \ 76 ${COMMON_EXTRA_OECONF} \
76" 77"
77 78