Skip to content

Commit

Permalink
Merge pull request #4300 from linqigang888/fix_sed_on_forward_slash
Browse files Browse the repository at this point in the history
Fix sed on forward slashes
  • Loading branch information
waruqi authored Oct 18, 2023
2 parents 7dd4fa1 + ef0eae6 commit 327551e
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 327551e

Please sign in to comment.