From 0e0435be76d0690aa26037aed41192283b44b8c2 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Thu, 12 Jun 2003 11:37:23 +0000 Subject: [PATCH] Little correction. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@975 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/build/unix/config_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/build/unix/config_functions b/sc2/build/unix/config_functions index 2e469dcb8..314019316 100644 --- a/sc2/build/unix/config_functions +++ b/sc2/build/unix/config_functions @@ -359,7 +359,7 @@ substitute_vars() { for VAR in $VARS; do # Escape all / in VAR so that we can use / as seperator char for sed eval VALUE=\"\$$VAR\" - VALUE=$(echo "$VALUE" | sed 's,\([\&/]\),\\\1,g') + VALUE=$(echo "$VALUE" | $SED 's,\([\&/]\),\\\1,g') cat << EOF s/@${VAR}@/${VALUE}/g EOF