summaryrefslogtreecommitdiff
path: root/buildtools/compare_config_h4.sh
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2010-03-19 12:13:58 +0100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:56 +1000
commit7c20de97a0e0be442a70b4af0a7704763b39dbe4 (patch)
treee9f6ca0686b9f27868a7f41bdcce9d11e6fdbb33 /buildtools/compare_config_h4.sh
parent4b68550642098f42b8fb3d7b08b6d6f475bb3d34 (diff)
downloadsamba-7c20de97a0e0be442a70b4af0a7704763b39dbe4.tar.gz
build: rename s4 compare_config_h.sh helper and add a s3 version of it
Diffstat (limited to 'buildtools/compare_config_h4.sh')
-rwxr-xr-xbuildtools/compare_config_h4.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/buildtools/compare_config_h4.sh b/buildtools/compare_config_h4.sh
new file mode 100755
index 00000000000..6daa743ed21
--- /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