1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

build: tool to find missing install components

This commit is contained in:
Andrew Tridgell 2010-03-19 20:06:22 +11:00
parent 5025ca10c6
commit 8ea03369bc

8
buildtools/compare_install.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
prefix1="$1"
prefix2="$2"
(cd $prefix1 && find . -type f) | sort > p1.txt
(cd $prefix2 && find . -type f) | sort > p2.txt
diff -u p[12].txt