summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-04-02 00:29:51 +0200
committerMichael Adam <obnox@samba.org>2011-04-02 02:41:18 +0200
commite06dba158996909228834b9302cc56e4e1006d99 (patch)
tree138904e281b0fe539f4022653ad6aa83f22db506 /buildtools
parent00224d06c389e9744b83bcec09a9d002086058fc (diff)
downloadsamba-e06dba158996909228834b9302cc56e4e1006d99.tar.gz
samba-e06dba158996909228834b9302cc56e4e1006d99.tar.bz2
samba-e06dba158996909228834b9302cc56e4e1006d99.zip
s3:waf:compare_config_h3.sh: specify autoconf-config.h as commandline parameter
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/compare_config_h3.sh7
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