s3:waf:compare_config_h3.sh: specify autoconf-config.h as commandline parameter
authorMichael Adam <obnox@samba.org>
Fri, 1 Apr 2011 22:29:51 +0000 (00:29 +0200)
committerMichael Adam <obnox@samba.org>
Sat, 2 Apr 2011 00:41:18 +0000 (02:41 +0200)
buildtools/compare_config_h3.sh

index 0f640a9540a1fe3081c6e98eaebbcaeb49ab2dfb..00f84c1540c25835be349a17455a50fb294eea61 100755 (executable)
@@ -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