diff options
-rwxr-xr-x | buildtools/compare_config_h3.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/buildtools/compare_config_h3.sh b/buildtools/compare_config_h3.sh index 0f640a9540..00f84c1540 100755 --- a/buildtools/compare_config_h3.sh +++ b/buildtools/compare_config_h3.sh @@ -3,8 +3,13 @@ # compare the generated config.h from a waf build with existing samba # build +OLD_CONFIG=$HOME/samba_old/source3/include/config.h +if test "x$1" != "x" ; then + OLD_CONFIG=$1 +fi + 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 +grep "^.define" $OLD_CONFIG | sort > old-config.h comm -23 old-config.h waf-config.h |