From: Otto Moerbeek Date: Mon, 28 Apr 2025 12:08:48 +0000 (+0200) Subject: Use grep -F instead of fgrep X-Git-Tag: dnsdist-2.0.0-alpha2~45^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57b7a0093ad46ecc50e79c0f8631e98570d72ea2;p=thirdparty%2Fpdns.git Use grep -F instead of fgrep Co-authored-by: Remi Gacogne --- diff --git a/builder-support/helpers/install_quiche.sh b/builder-support/helpers/install_quiche.sh index 5f36d54605..5f5a93e05a 100755 --- a/builder-support/helpers/install_quiche.sh +++ b/builder-support/helpers/install_quiche.sh @@ -46,7 +46,7 @@ RUST_BACKTRACE=1 cargo build --release --no-default-features --features ffi,bori # packaged rustc puts it in anyway. # See (https://sources.debian.org/patches/rustc/1.85.0%2Bdfsg2-3/behaviour/d-rustc-add-soname.patch/). # So if it is present, patch it to the correct name. -if objdump -p target/release/libquiche.${SOEXT} | fgrep -q SONAME +if objdump -p target/release/libquiche.${SOEXT} | grep -F -q SONAME then patchelf --set-soname libdnsdist-quiche.so target/release/libquiche.${SOEXT} fi