Author: rinrab
Date: Tue Jul  9 16:43:24 2024
New Revision: 1919067

URL: http://svn.apache.org/viewvc?rev=1919067&view=rev
Log:
build.conf: Use forward slashes for msvc-export of all targets.

Most of the targets already use forward slashes for msvc-export, but some
of them still have backward slashes. This commit normalizes the slashes for
all targets. Using of forward slashes for this field is better because these
slashes are used everywhere else in this file.

* build.conf: Replace all backward slashes to forward in the msvc-export
  field.

Modified:
    subversion/trunk/build.conf

Modified: subversion/trunk/build.conf
URL: 
http://svn.apache.org/viewvc/subversion/trunk/build.conf?rev=1919067&r1=1919066&r2=1919067&view=diff
==============================================================================
--- subversion/trunk/build.conf (original)
+++ subversion/trunk/build.conf Tue Jul  9 16:43:24 2024
@@ -330,7 +330,7 @@ libs = libsvn_delta libsvn_subr ra-libs
 add-deps = $(SVN_RA_LIB_DEPS)
 add-install-deps = $(SVN_RA_LIB_INSTALL_DEPS)
 install = lib
-msvc-export = svn_ra.h private\svn_ra_private.h
+msvc-export = svn_ra.h private/svn_ra_private.h
 msvc-delayload = yes
 
 # Accessing repositories via DAV through serf
@@ -388,19 +388,19 @@ msvc-export =
         svn_nls.h svn_opt.h svn_path.h svn_pools.h svn_props.h svn_quoprint.h 
         svn_sorts.h svn_string.h svn_subst.h svn_time.h svn_types.h svn_user.h
         svn_utf.h svn_version.h svn_xml.h svn_x509.h
-        private\svn_atomic.h private\svn_cache.h private\svn_cmdline_private.h
-        private\svn_debug.h private\svn_error_private.h private\svn_fspath.h
-        private\svn_log.h private\svn_mergeinfo_private.h
-        private\svn_opt_private.h private\svn_skel.h private\svn_sqlite.h
-        private\svn_utf_private.h private\svn_eol_private.h
-        private\svn_token.h  private\svn_adler32.h
-        private\svn_temp_serializer.h private\svn_io_private.h
-        private\svn_sorts_private.h private\svn_auth_private.h
-        private\svn_string_private.h private\svn_magic.h
-        private\svn_subr_private.h private\svn_mutex.h  private\svn_task.h
-        private\svn_thread_cond.h private\svn_waitable_counter.h
-        private\svn_packed_data.h private\svn_object_pool.h private\svn_cert.h
-        private\svn_config_private.h private\svn_dirent_uri_private.h
+        private/svn_atomic.h private/svn_cache.h private/svn_cmdline_private.h
+        private/svn_debug.h private/svn_error_private.h private/svn_fspath.h
+        private/svn_log.h private/svn_mergeinfo_private.h
+        private/svn_opt_private.h private/svn_skel.h private/svn_sqlite.h
+        private/svn_utf_private.h private/svn_eol_private.h
+        private/svn_token.h  private/svn_adler32.h
+        private/svn_temp_serializer.h private/svn_io_private.h
+        private/svn_sorts_private.h private/svn_auth_private.h
+        private/svn_string_private.h private/svn_magic.h
+        private/svn_subr_private.h private/svn_mutex.h  private/svn_task.h
+        private/svn_thread_cond.h private/svn_waitable_counter.h
+        private/svn_packed_data.h private/svn_object_pool.h private/svn_cert.h
+        private/svn_config_private.h private/svn_dirent_uri_private.h
 
 # Working copy management lib
 [libsvn_wc]
@@ -409,7 +409,7 @@ type = lib
 path = subversion/libsvn_wc
 libs = libsvn_delta libsvn_diff libsvn_subr aprutil apriconv apr
 install = lib
-msvc-export = svn_wc.h private\svn_wc_private.h
+msvc-export = svn_wc.h private/svn_wc_private.h
 
 # Subversion plugin for Apache's mod_dav
 [mod_dav_svn]


Reply via email to