#!/bin/sh # Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: AGPL-3.0 set -eu FAIL=0 echo while read so && [ -n "$so" ]; do if ldd "$so" | grep "not found" ; then echo "^^^ Missing while scanning $so ^^^" FAIL=1 fi done <