waf/buildtools: use /bin/sh instead of /bin/bash and put ^ in quotes
[ddiss/samba.git] / buildtools / compare_config_h3.sh
index 742aa1b5b8933003d6f72314961854f94927ab09..0f640a9540a1fe3081c6e98eaebbcaeb49ab2dfb 100755 (executable)
@@ -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/source3/include/config.h | sort > waf-config.h
-grep ^.define $HOME/samba_old/source3/include/config.h | sort > old-config.h
+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