diff options
author | Kai Blin <kai@samba.org> | 2010-03-19 12:13:58 +0100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:56 +1000 |
commit | 7c20de97a0e0be442a70b4af0a7704763b39dbe4 (patch) | |
tree | e9f6ca0686b9f27868a7f41bdcce9d11e6fdbb33 | |
parent | 4b68550642098f42b8fb3d7b08b6d6f475bb3d34 (diff) | |
download | samba-7c20de97a0e0be442a70b4af0a7704763b39dbe4.tar.gz samba-7c20de97a0e0be442a70b4af0a7704763b39dbe4.tar.bz2 samba-7c20de97a0e0be442a70b4af0a7704763b39dbe4.zip |
build: rename s4 compare_config_h.sh helper and add a s3 version of it
-rwxr-xr-x | buildtools/compare_config_h3.sh | 12 | ||||
-rwxr-xr-x | buildtools/compare_config_h4.sh (renamed from buildtools/compare_config_h.sh) | 0 |
2 files changed, 12 insertions, 0 deletions
diff --git a/buildtools/compare_config_h3.sh b/buildtools/compare_config_h3.sh new file mode 100755 index 0000000000..742aa1b5b8 --- /dev/null +++ b/buildtools/compare_config_h3.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# compare the generated config.h from a waf build with existing samba +# build + +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 + +comm -23 old-config.h waf-config.h + +#echo +#diff -u old-config.h waf-config.h diff --git a/buildtools/compare_config_h.sh b/buildtools/compare_config_h4.sh index 6daa743ed2..6daa743ed2 100755 --- a/buildtools/compare_config_h.sh +++ b/buildtools/compare_config_h4.sh |