Fix excessive escaping.
authorYang Tse <yangsita@gmail.com>
Fri, 7 Jul 2006 05:39:14 +0000 (05:39 +0000)
committerYang Tse <yangsita@gmail.com>
Fri, 7 Jul 2006 05:39:14 +0000 (05:39 +0000)
acinclude.m4

index 0bd334c..97fc10b 100644 (file)
@@ -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)