Skip to content

Commit

Permalink
Fix sed on forward slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
linqigang888 committed Oct 18, 2023
1 parent 23f5f45 commit ef0eae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -3727,7 +3727,7 @@ _replace_configvar_define() {
_replace_configvar_value() {
local name="${1}"
local value="${2}"
_ret="s/\${${name}}/${value}/g"
_ret="s@\${${name}}@${value}@g"
}

# generate configfile for the given target
Expand Down

0 comments on commit ef0eae6

Please sign in to comment.