Skip to content

Commit 274951a

Browse files
committed
Fix #73219 (fix acinclude when / is present)
1 parent 7753d10 commit 274951a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

acinclude.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2678,7 +2678,7 @@ EOF
26782678
if test -n "$val"; then
26792679
echo "$var='$val' \\" >> $1
26802680
if test `expr "X$ac_configure_args" : ".*${var}.*"` != 0; then
2681-
clean_configure_args=$(echo $clean_configure_args | sed -e "s/'$var=$val'//")
2681+
clean_configure_args=$(echo $clean_configure_args | sed -e "s#'$var=$val'##")
26822682
fi
26832683
fi
26842684
done

0 commit comments

Comments
 (0)