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 08:59:19 +0200
commit8742074eb23eea3001fbff894afa84a22373e048 (patch)
tree871f56dd7567f40d60106f83863b1e488a2b6823 /buildtools
parent8421f046512c958ddb79f7ee8552dedfc870350b (diff)
downloadsamba-8742074eb23eea3001fbff894afa84a22373e048.tar.gz
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 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