From e06dba158996909228834b9302cc56e4e1006d99 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 2 Apr 2011 00:29:51 +0200 Subject: [PATCH] s3:waf:compare_config_h3.sh: specify autoconf-config.h as commandline parameter --- buildtools/compare_config_h3.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.34.1