From 7c20de97a0e0be442a70b4af0a7704763b39dbe4 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Fri, 19 Mar 2010 12:13:58 +0100 Subject: build: rename s4 compare_config_h.sh helper and add a s3 version of it --- buildtools/compare_config_h4.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 buildtools/compare_config_h4.sh (limited to 'buildtools/compare_config_h4.sh') diff --git a/buildtools/compare_config_h4.sh b/buildtools/compare_config_h4.sh new file mode 100755 index 0000000000..6daa743ed2 --- /dev/null +++ b/buildtools/compare_config_h4.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# compare the generated config.h from a waf build with existing samba +# build + +grep ^.define bin/default/source4/include/config.h | sort > waf-config.h +grep ^.define $HOME/samba_old/source4/include/config.h | sort > old-config.h + +comm -23 old-config.h waf-config.h + +#echo +#diff -u old-config.h waf-config.h -- cgit