From 8ea03369bcd8ebb351e280222184f6d583640f46 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 19 Mar 2010 20:06:22 +1100 Subject: build: tool to find missing install components --- buildtools/compare_install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 buildtools/compare_install.sh 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 -- cgit