summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Lamskoy2022-01-27 14:22:34 +0200
committerEugene Lamskoy2022-01-27 14:22:34 +0200
commit0d29c11489528c22930d7c5d466dd81c4e3d857c (patch)
treeabcbbe9ae55ef3d567ad2ff40b24060c37093a60
parent302d4f6d62622e9ddac1e7cee51f5c47eb8f139c (diff)
downloadaur-0d29c11489528c22930d7c5d466dd81c4e3d857c.tar.gz
Sendmail detection
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0c81e2f58622..b4e154696da9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -643,7 +643,7 @@ build() {
check() {
pushd "build-cli"
# Check if sendmail was configured correctly (FS#47600)
- sapi/cli/php -n -r 'echo ini_get("sendmail_path");' | grep -q '/usr/bin/sendmail'
+ sapi/cli/php -n -r 'echo ini_get("sendmail_path");' | grep -q $(which sendmail)
export REPORT_EXIT_STATUS=1
export NO_INTERACTION=1
export SKIP_ONLINE_TESTS=1