summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-01-26 05:12:44 +0000
committerSam James <sam@gentoo.org>2023-01-26 05:12:44 +0000
commit680f71257d1fe2fe4bb8c9637deb897afc31f2b5 (patch)
tree31a4a8eb3db46ab6419017739eca1ae67bd11e77 /eclass/apache-2.eclass
parentapache-2.eclass: adjust NGHTTP2_VERSION for newer versions (diff)
downloadgentoo-680f71257d1fe2fe4bb8c9637deb897afc31f2b5.tar.gz
gentoo-680f71257d1fe2fe4bb8c9637deb897afc31f2b5.tar.bz2
gentoo-680f71257d1fe2fe4bb8c9637deb897afc31f2b5.zip
apache-2.eclass: silence pcre-config check
Noisy if Apache version is using pcre2. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/apache-2.eclass')
-rw-r--r--eclass/apache-2.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass
index e68642bf2e7c..5e3e5cdba282 100644
--- a/eclass/apache-2.eclass
+++ b/eclass/apache-2.eclass
@@ -576,7 +576,7 @@ apache-2_src_configure() {
export ac_cv_path_PKGCONFIG="${PKG_CONFIG}"
# Sanity check in case people have bad mounts/TPE settings. #500928
- if ! "${T}"/pcre-config --help >/dev/null && ! "${T}"/pcre2-config --help >/dev/null ; then
+ if ! "${T}"/pcre-config --help &>/dev/null && ! "${T}"/pcre2-config --help &>/dev/null ; then
eerror "Could not execute ${T}/pcre-config (or pcre2-config); do you have bad mount"
eerror "permissions in ${T} or have TPE turned on in your kernel?"
die "check your runtime settings #500928"