]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Use grep -F instead of fgrep 15440/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 28 Apr 2025 12:08:48 +0000 (14:08 +0200)
committerGitHub <noreply@github.com>
Mon, 28 Apr 2025 12:08:48 +0000 (14:08 +0200)
Co-authored-by: Remi Gacogne <github@coredump.fr>
builder-support/helpers/install_quiche.sh

index 5f36d5460593b71578ca07a9f2e1b08fb6a3493d..5f5a93e05aa95d4b3d8cdd45f9d3091ce03d8a0c 100755 (executable)
@@ -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