diff options
author | Michael Adam <obnox@samba.org> | 2011-04-02 00:29:51 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-04-02 02:41:18 +0200 |
commit | e06dba158996909228834b9302cc56e4e1006d99 (patch) | |
tree | 138904e281b0fe539f4022653ad6aa83f22db506 /buildtools | |
parent | 00224d06c389e9744b83bcec09a9d002086058fc (diff) | |
download | samba-e06dba158996909228834b9302cc56e4e1006d99.tar.gz |
s3:waf:compare_config_h3.sh: specify autoconf-config.h as commandline parameter
Diffstat (limited to 'buildtools')
-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 0f640a9540a..00f84c1540c 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 |