diff options
author | Clement Chauplannaz <chauplac@gmail.com> | 2013-09-13 04:45:13 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2013-09-13 07:06:59 -0400 |
commit | 86eb781889ec31f6421b86ab252ea609d456322d (patch) | |
tree | 43d3db377285240996dc91ca12469b1c304bb2d9 /scripts | |
parent | e062781397e5bebc6c1b8dd4bf466136e13ae4c5 (diff) |
scripts/config: fix variable substitution command
Commit 229455bc02b87f7128f190c4491b4ceffff38648 accidentally changed the
separator between sed `s' command and its parameters from ':' to '/'.
Revert this change.
Reported-and-tested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Clement Chauplannaz <chauplac@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config b/scripts/config index 2283be2bb62c..68041793698c 100755 --- a/scripts/config +++ b/scripts/config | |||
@@ -82,7 +82,7 @@ txt_subst() { | |||
82 | local infile="$3" | 82 | local infile="$3" |
83 | local tmpfile="$infile.swp" | 83 | local tmpfile="$infile.swp" |
84 | 84 | ||
85 | sed -e "s/$before/$after/" "$infile" >"$tmpfile" | 85 | sed -e "s:$before:$after:" "$infile" >"$tmpfile" |
86 | # replace original file with the edited one | 86 | # replace original file with the edited one |
87 | mv "$tmpfile" "$infile" | 87 | mv "$tmpfile" "$infile" |
88 | } | 88 | } |