Skip to content

Commit 40846b2

Browse files
committed
Fix sed call in parse_pecl_configure_options
1 parent 8e2ac35 commit 40846b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/extensions/source.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ parse_args() {
1313
# Function to parse configure options for pecl
1414
# Make sure we have all options in name="value" form i.e XML properties.
1515
parse_pecl_configure_options() {
16-
configure_opts=$(echo "$1" | sed -r -e "s#['\"]|--##g")
16+
configure_opts=$(echo "$1" | sed -E -e "s#['\"]|--##g")
1717
IFS=' ' read -r -a opts_array <<< "$configure_opts"
1818
output_opts=()
1919
for opt in "${opts_array[@]}"; do

0 commit comments

Comments
 (0)