build: make compare_install.sh also check for missing directories
authorAndrew Tridgell <tridge@samba.org>
Mon, 19 Apr 2010 11:00:16 +0000 (21:00 +1000)
committerAndrew Tridgell <tridge@samba.org>
Mon, 19 Apr 2010 11:00:16 +0000 (21:00 +1000)
Thanks to Nadya for pointing this out

buildtools/compare_install.sh

index c3a1c23bc0eda3a9b27b7a6f62edeef4f4ca2671..5ddbffb66564aec17a123d487e2f42af372a4bb0 100755 (executable)
@@ -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