summaryrefslogtreecommitdiff
path: root/buildtools/compare_config_h4.sh
diff options
context:
space:
mode:
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 6daa743ed2..b78b36fdd0 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