mirror of
https://github.com/curl/curl.git
synced 2026-06-17 08:45:39 +03:00
Fix excessive escaping.
This commit is contained in:
parent
266ab95557
commit
05edd48ad0
2 changed files with 2 additions and 2 deletions
|
|
@ -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 'y/\.\/-/___/'`
|
||||
u_hdr=`echo "$f_hdr" | sed 'y/.\/-/___/'`
|
||||
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 'y/\.\/-/___/'`
|
||||
u_hdr=`echo "$f_hdr" | sed 'y/.\/-/___/'`
|
||||
eval prev_check_res=\$ac_cv_header_$u_hdr
|
||||
case "$prev_check_res" in
|
||||
yes | no)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue