1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

build: rename s4 compare_config_h.sh helper and add a s3 version of it

This commit is contained in:
Kai Blin 2010-03-19 12:13:58 +01:00 committed by Andrew Tridgell
parent 4b68550642
commit 7c20de97a0
2 changed files with 12 additions and 0 deletions

12
buildtools/compare_config_h3.sh Executable file
View File

@ -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