summarylogtreecommitdiffstats
path: root/missing-deps.sh
diff options
context:
space:
mode:
authorY2018-05-12 18:51:37 +0200
committerY2018-05-12 21:42:57 +0200
commit59b73e623a3c22717bf8323ede6e337395d7f72b (patch)
treed35826f5889905ae5d53b3aca8cad6baff6ce551 /missing-deps.sh
parentf7db270d71a27260b6e59683fc0ad8c0a10c15c0 (diff)
downloadaur-59b73e623a3c22717bf8323ede6e337395d7f72b.tar.gz
upstream v3.2.2-1 + documentation
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"; }' {} \;