diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-19 21:00:16 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-19 21:00:16 +1000 |
commit | d2b35c3a24b9bae88b996f8bc70e6a6012fd16f5 (patch) | |
tree | 88c9f3dd28bbe58f2022a6ebadd0598c6771c819 | |
parent | 0b2e5debb004ed586e0ec7d926311c32a8b8f9e6 (diff) | |
download | samba-d2b35c3a24b9bae88b996f8bc70e6a6012fd16f5.tar.gz samba-d2b35c3a24b9bae88b996f8bc70e6a6012fd16f5.tar.bz2 samba-d2b35c3a24b9bae88b996f8bc70e6a6012fd16f5.zip |
build: make compare_install.sh also check for missing directories
Thanks to Nadya for pointing this out
-rwxr-xr-x | buildtools/compare_install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/compare_install.sh b/buildtools/compare_install.sh index c3a1c23bc0..5ddbffb665 100755 --- a/buildtools/compare_install.sh +++ b/buildtools/compare_install.sh @@ -3,6 +3,6 @@ prefix1="$1" prefix2="$2" -(cd $prefix1 && find . -type f) | sort > p1.txt -(cd $prefix2 && find . -type f) | sort > p2.txt +(cd $prefix1 && find . ) | sort > p1.txt +(cd $prefix2 && find . ) | sort > p2.txt diff -u p[12].txt |