summarylogtreecommitdiffstats
path: root/missing-deps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'missing-deps.sh')
-rwxr-xr-xmissing-deps.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/missing-deps.sh b/missing-deps.sh
new file mode 100755
index 000000000000..70ef05167916
--- /dev/null
+++ b/missing-deps.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+cd "$(dirname "$0")/pkg/collabora-online-server-nodocker"
+find * -type f -exec bash -c 'file "$0" | grep -qF " ELF " && { nf="$(LC_ALL=C LANG=C ldd "$0" | grep -F "not found")"; [ -n "$nf" ] && printf "=== %s ===\\n%s\\n" "$0" "$nf"; }' {} \;