mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
20 lines
399 B
Bash
Executable File
20 lines
399 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# compare the generated config.h from a waf build with existing samba
|
|
# build
|
|
|
|
OLD_CONFIG=$HOME/samba_old/source3/include/config.h
|
|
if test "x$1" != "x" ; then
|
|
OLD_CONFIG=$1
|
|
fi
|
|
|
|
if test "x$DIFF" = "x" ; then
|
|
DIFF="comm -23"
|
|
fi
|
|
|
|
grep "^.define" bin/default/source3/include/config.h | sort > waf-config.h
|
|
grep "^.define" $OLD_CONFIG | sort > old-config.h
|
|
|
|
$DIFF old-config.h waf-config.h
|
|
|