diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-19 20:06:22 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:55 +1000 |
commit | 8ea03369bcd8ebb351e280222184f6d583640f46 (patch) | |
tree | 12a4d7cecf7261676f4c8736452bd01a2adba636 | |
parent | 5025ca10c6845af888a80a57a012c19fde6482ae (diff) | |
download | samba-8ea03369bcd8ebb351e280222184f6d583640f46.tar.gz samba-8ea03369bcd8ebb351e280222184f6d583640f46.tar.bz2 samba-8ea03369bcd8ebb351e280222184f6d583640f46.zip |
build: tool to find missing install components
-rwxr-xr-x | buildtools/compare_install.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/buildtools/compare_install.sh b/buildtools/compare_install.sh new file mode 100755 index 0000000000..c3a1c23bc0 --- /dev/null +++ b/buildtools/compare_install.sh @@ -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 |