You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2014/10/02 21:54:00 UTC

svn commit: r1629058 - /httpd/mod_ftp/trunk/configure.apxs

Author: wrowe
Date: Thu Oct  2 19:54:00 2014
New Revision: 1629058

URL: http://svn.apache.org/r1629058
Log:
Simplify quoting with single tics

Modified:
    httpd/mod_ftp/trunk/configure.apxs

Modified: httpd/mod_ftp/trunk/configure.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/configure.apxs?rev=1629058&r1=1629057&r2=1629058&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/configure.apxs (original)
+++ httpd/mod_ftp/trunk/configure.apxs Thu Oct  2 19:54:00 2014
@@ -78,37 +78,37 @@ echo "Detecting features" > ../config.ap
 
 if make local-clean conftest_fchmod >>../config.apxs.log 2>&1; then
   found_features="$found_features \
-    -e \"s/^#undef \(HAVE_FCHMOD\)[ \t]*/#define \1 1/;\""
+    -e 's/^#undef \(HAVE_FCHMOD\)[ \t]*/#define \1 1/;'"
 fi
 
 if make local-clean conftest_arpa_ftp_h >>../config.apxs.log 2>&1; then
   found_features="$found_features \
-    -e \"s/^#undef \(HAVE_ARPA_FTP_H\)[ \t]*/#define \1 1/;\""
+    -e 's/^#undef \(HAVE_ARPA_FTP_H\)[ \t]*/#define \1 1/;'"
 fi
 
 if make local-clean conftest_netinet_ip_h >>../config.apxs.log 2>&1; then
   found_features="$found_features \
-    -e \"s/^#undef \(HAVE_NETINET_IP_H\)[ \t]*/#define \1 1/;\""
+    -e 's/^#undef \(HAVE_NETINET_IP_H\)[ \t]*/#define \1 1/;'"
 
   if make local-clean conftest_SOL_IP >>../config.apxs.log 2>&1; then
     found_features="$found_features \
-      -e \"s/^#undef \(HAVE_SOL_IP\)[ \t]*/#define \1 1/;\""
+      -e 's/^#undef \(HAVE_SOL_IP\)[ \t]*/#define \1 1/;'"
   fi
 fi
 
 if make local-clean conftest_sys_stat_h >>../config.apxs.log 2>&1; then
   found_features="$found_features \
-    -e \"s/^#undef \(HAVE_SYS_STAT_H\)[ \t]*/#define \1 1/;\""
+    -e 's/^#undef \(HAVE_SYS_STAT_H\)[ \t]*/#define \1 1/;'"
 fi
 
 if make conftest_struct_msghdr_msg_control >>../config.apxs.log 2>&1; then
   found_features="$found_features \
-    -e \"s/^#undef \(HAVE_STRUCT_MSGHDR_MSG_CONTROL\)[ \t]*/#define \1 1/;\""
+    -e 's/^#undef \(HAVE_STRUCT_MSGHDR_MSG_CONTROL\)[ \t]*/#define \1 1/;'"
 fi
 
 if make conftest_struct_msghdr_msg_accrights >>../config.apxs.log 2>&1; then
   found_features="$found_features \
-    -e \"s/^#undef \(HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS\)[ \t]*/#define \1 1/;\""
+    -e 's/^#undef \(HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS\)[ \t]*/#define \1 1/;'"
 fi
 
 make local-distclean >>../config.apxs.log 2>&1