From db67d074ee6bf4ec295763c83ccbe3ae29810eb3 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Thu, 27 Sep 2012 20:10:00 +0000 Subject: [PATCH] fix for non-Mac --- src/options/mkoptions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/options/mkoptions b/src/options/mkoptions index 503e03fde..92c8317f7 100755 --- a/src/options/mkoptions +++ b/src/options/mkoptions @@ -1175,7 +1175,7 @@ function output_module { repl="$repl2" echo -n ";s,$(eval echo "\$\{$var\}"),$repl,g" >>"$output.sed" done - sed -f "$output.sed" -i "" "$output.working" + sed -f "$output.sed" -i "$output.working" error="$(grep '.*\${[^}]*}.*' "$output.working" | head -n 1)" if [ -n "$error" ]; then error="$(echo "$error" | sed 's,.*\${\([^}]*\)}.*,\1,')" @@ -1352,7 +1352,7 @@ for var in \ repl="$repl2" echo -n ";s,$(eval echo "\$\{$var\}"),$repl,g" >>"$output.sed" done -sed -f "$output.sed" -i "" "$output.working" +sed -f "$output.sed" -i "$output.working" error="$(grep '.*\${[^}]*}.*' "$output.working" | head -n 1)" if [ -n "$error" ]; then error="$(echo "$error" | sed 's,.*\${\([^}]*\)}.*,\1,')" -- 2.30.2