]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Use grep -F instead of fgrep 15507/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 28 Apr 2025 12:08:48 +0000 (14:08 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Wed, 30 Apr 2025 10:53:17 +0000 (12:53 +0200)
Co-authored-by: Remi Gacogne <github@coredump.fr>
(cherry picked from commit 57b7a0093ad46ecc50e79c0f8631e98570d72ea2)

builder-support/helpers/install_quiche.sh

index 830c076f4803f19026258a0aa3e9e090a966955a..88015119afd0e69d6c15716abf89eebfd0391ec4 100755 (executable)
@@ -35,7 +35,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