3 # This script compares autoconf-based installation against regular builds
6 # This script should be run after `make install DESTDIR=debian/tmp' has been
7 # run on autoconf-based build.
13 P2
=debian
/tmp
/usr
/include
18 find "$1" -name '*.h' -o -name '*.inl' -o -name '*.hpp' -o -name '*.ipp'
21 # Remove path with examples, tests and tutorial from STDIN
23 grep -E -v '(examples|tests|tutorials)/'
26 # Removed unused/unshipped stuff
28 grep -E -v '^/(ASNMP|TAO_IDL|ace/QoS|apps|contrib|utils)'
31 F1
=`mktemp -t ace_regular.XXXXXXXXXX`
32 F2
=`mktemp -t ace_autoconf.XXXXXXXXXX`
35 ff
$P1 |
sed -e "s@$P1@@" -e "s@/TAO@@" -e "s@/protocols@@" -e "s@^/orbsvcs@@" | drop | unused |
sort >> $F1
36 ff
$P2 |
sed -e "s@$P2@@" |
sort >> $F2