diff options
Diffstat (limited to 'buildtools')
-rwxr-xr-x | buildtools/compare_config_h3.sh | 12 | ||||
-rwxr-xr-x | buildtools/compare_config_h4.sh (renamed from buildtools/compare_config_h.sh) | 0 |
2 files changed, 12 insertions, 0 deletions
diff --git a/buildtools/compare_config_h3.sh b/buildtools/compare_config_h3.sh new file mode 100755 index 0000000000..742aa1b5b8 --- /dev/null +++ b/buildtools/compare_config_h3.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# compare the generated config.h from a waf build with existing samba +# build + +grep ^.define bin/default/source3/include/config.h | sort > waf-config.h +grep ^.define $HOME/samba_old/source3/include/config.h | sort > old-config.h + +comm -23 old-config.h waf-config.h + +#echo +#diff -u old-config.h waf-config.h diff --git a/buildtools/compare_config_h.sh b/buildtools/compare_config_h4.sh index 6daa743ed2..6daa743ed2 100755 --- a/buildtools/compare_config_h.sh +++ b/buildtools/compare_config_h4.sh |