source: vendor/current/buildtools/compare_config_h4.sh

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 322 bytes
Line 
1#!/bin/sh
2
3# compare the generated config.h from a waf build with existing samba
4# build
5
6grep "^.define" bin/default/source4/include/config.h | sort > waf-config.h
7grep "^.define" $HOME/samba_old/source4/include/config.h | sort > old-config.h
8
9comm -23 old-config.h waf-config.h
10
11#echo
12#diff -u old-config.h waf-config.h
Note: See TracBrowser for help on using the repository browser.