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:
parent
5025ca10c6
commit
8ea03369bc
8
buildtools/compare_install.sh
Executable file
8
buildtools/compare_install.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user