Convert configure script shebang back to /bin/sh for cross-platform compatability (#215)

This commit is contained in:
ethoms
2016-07-13 02:47:54 +08:00
committed by Patrice Levesque
parent f638113d53
commit 4c4d3e4c25
Vendored
+3 -2
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
#
# Note: When adding make options to this script, ensure that the source still
@@ -235,7 +235,8 @@ genConfigMake() {
cfgwrite "# $MAKE debug=yes"
cfgwrite ""
cfgwrite "TOPDIR:=$( sed 's/ /\\\ /g' <<< ${TOPDIR} )"
TOPDIR_CFGWRITE=`echo ${TOPDIR} | sed 's/ /\\\ /g'`
cfgwrite "TOPDIR:=${TOPDIR_CFGWRITE}"
cfgwrite ""
cfgwrite "NEEDS_GUI=no"