]> The Tcpdump Group git mirrors - tcpdump/commitdiff
build_common: fix missing ldd on Haiku 1030/head
authorDavid Karoly <[email protected]>
Sun, 22 Jan 2023 14:22:51 +0000 (15:22 +0100)
committerDavid Karoly <[email protected]>
Sun, 22 Jan 2023 17:05:02 +0000 (18:05 +0100)
build_common.sh

index b5fa66b6e837034041e6655580daa05b2b72de2d..3c9d7d4c9fb7353a4b3d5bbac01e16cbeccf580f 100644 (file)
@@ -248,6 +248,9 @@ print_so_deps() {
     Darwin-*)
         run_after_echo otool -L "${1:?}"
         ;;
+    Haiku-*)
+        run_after_echo objdump -p "${1:?}"
+        ;;
     *)
         run_after_echo ldd "${1:?}"
         ;;