summaryrefslogtreecommitdiff
path: root/buildtools/compare_config_h4.sh
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-12-02 09:40:21 +0100
committerBjoern Jacke <bj@sernet.de>2010-12-02 10:36:06 +0100
commitfca9d052304971659366f00ee7105d70d7460b66 (patch)
treed28101d52f84ca1256e1c1d3a14baa1db6ea2f1f /buildtools/compare_config_h4.sh
parentbeb01815f041d678024c60ac9ca53f8fcf759246 (diff)
downloadsamba-fca9d052304971659366f00ee7105d70d7460b66.tar.gz
waf/buildtools: use /bin/sh instead of /bin/bash and put ^ in quotes
- some Unix shells actually don't like grep ^foo, use grep "^foo" instead. - bash is not installed on every system, please avoid #!/bin/bash and use #!/bin/sh instead
Diffstat (limited to 'buildtools/compare_config_h4.sh')
-rwxr-xr-xbuildtools/compare_config_h4.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/compare_config_h4.sh b/buildtools/compare_config_h4.sh
index 6daa743ed21..b78b36fdd0f 100755
--- a/buildtools/compare_config_h4.sh
+++ b/buildtools/compare_config_h4.sh
@@ -1,10 +1,10 @@
-#!/bin/bash
+#!/bin/sh
# 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
+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