summaryrefslogtreecommitdiff
path: root/buildtools/compare_config_h.sh
blob: 09f47b2b99d5ca1099994c456a796032c433ec08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# compare the generated config.h from a waf build with existing samba
# build

grep ^.define bin/default/source4/include/config.h | sort > waf-config.h
grep ^.define $HOME/samba_old/source4/include/config.h | sort > old-config.h

comm -23 old-config.h waf-config.h

echo

diff -u old-config.h waf-config.h