mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
Substitution of the literal '-' is only done if it's the first or last character.
This commit is contained in:
parent
03288943af
commit
551a041283
@ -29,7 +29,7 @@ dnl Check for headers if check not already done.
|
||||
AC_DEFUN([CURL_CHECK_HEADERS_ONCE], [
|
||||
for f_hdr in $1
|
||||
do
|
||||
u_hdr=`echo "$f_hdr" | sed 's/[\-|\.|\/]/_/g'`
|
||||
u_hdr=`echo "$f_hdr" | sed 's/[-|\.|\/]/_/g'`
|
||||
eval prev_check_res=\$ac_cv_header_$u_hdr
|
||||
case "$prev_check_res" in
|
||||
yes | no)
|
||||
|
@ -7,7 +7,7 @@ dnl Check for headers if check not already done.
|
||||
AC_DEFUN([CURL_CHECK_HEADERS_ONCE], [
|
||||
for f_hdr in $1
|
||||
do
|
||||
u_hdr=`echo "$f_hdr" | sed 's/[\-|\.|\/]/_/g'`
|
||||
u_hdr=`echo "$f_hdr" | sed 's/[-|\.|\/]/_/g'`
|
||||
eval prev_check_res=\$ac_cv_header_$u_hdr
|
||||
case "$prev_check_res" in
|
||||
yes | no)
|
||||
|
Loading…
Reference in New Issue
Block a user