1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

build: make compare_install.sh also check for missing directories

Thanks to Nadya for pointing this out
This commit is contained in:
Andrew Tridgell
2010-04-19 21:00:16 +10:00
parent 0b2e5debb0
commit d2b35c3a24

View File

@ -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