G.J. Doornink wrote:
> Hello,
>
> At the moment svnsync is not included in the win32 installer.
> The attached patch fixes this.
>
Unfortunately there is a small typo in the previous patch.
Attached is the correct one.
[[
Add svnsync to the win32 installer.
* packages/windows-innosetup/Readme.txt,
packages/windows-innosetup/svn.iss,
packages/windows-innosetup/templates/svn_dynamics.iss:
Add svnsync.
]]
Kind regards,
Gerrit Jan
--
G.J. Doornink <dkg@xs4all.nl>
Index: packages/windows-innosetup/Readme.txt
===================================================================
--- packages/windows-innosetup/Readme.txt (revision 21396)
+++ packages/windows-innosetup/Readme.txt (working copy)
@@ -141,6 +141,7 @@
path_setup_in Contains misc. files to include in the setup
path_is Path to the Inno Setup executable's directory
path_svnclient svn.exe
+ path_svnsync svnsync.exe
path_svnadmin svnadmin.exe
path_svnlook svnlook.exe
path_svnserve svnserve.exe
Index: packages/windows-innosetup/svn.iss
===================================================================
--- packages/windows-innosetup/svn.iss (revision 21396)
+++ packages/windows-innosetup/svn.iss (working copy)
@@ -60,6 +60,7 @@
Source: {#= path_setup_in}\subversion\svn-proxy-template.reg; DestDir: {app}; Flags: ignoreversion
Source: {#= path_svn}\README.txt; DestDir: {app}; DestName: Buildnotes.txt
Source: {#= path_svnclient}\svn.exe; DestDir: {app}\bin; Flags: ignoreversion
+Source: {#= path_svnsync}\svnsync.exe; DestDir: {app}\bin; Flags: ignoreversion
Source: {#= path_svnadmin}\svnadmin.exe; DestDir: {app}\bin; Flags: ignoreversion
Source: {#= path_svnlook}\svnlook.exe; DestDir: {app}\bin; Flags: ignoreversion
Source: {#= path_svnserve}\svnserve.exe; DestDir: {app}\bin; Flags: ignoreversion
@@ -103,6 +104,7 @@
; Debug symbols;
#ifdef inc_dbgsyms
Source: {#= path_svnclient_pdb}\svn.pdb; DestDir: {app}\bin; Flags: ignoreversion; Components: pdb
+Source: {#= path_svnsync_pdb}\svnsync.pdb; DestDir: {app}\bin; Flags: ignoreversion; Components: pdb
Source: {#= path_svnadmin_pdb}\svnadmin.pdb; DestDir: {app}\bin; Flags: ignoreversion; Components: pdb
Source: {#= path_svnlook_pdb}\svnlook.pdb; DestDir: {app}\bin; Flags: ignoreversion; Components: pdb
Source: {#= path_svnserve_pdb}\svnserve.pdb; DestDir: {app}\bin; Flags: ignoreversion; Components: pdb
@@ -179,6 +181,7 @@
;If add "fixed" flag to "main" in [Components], use these lines:
;Type: files; Name: {app}\svn.pdb
+;Type: files; Name: {app}\svnsync.pdb
;Type: files; Name: {app}\svnadmin.pdb
;Type: files; Name: {app}\svnserve.pdb
;Type: files; Name: {app}\svnlook.pdb
Index: packages/windows-innosetup/templates/svn_dynamics.iss
===================================================================
--- packages/windows-innosetup/templates/svn_dynamics.iss (revision 21396)
+++ packages/windows-innosetup/templates/svn_dynamics.iss (working copy)
@@ -47,6 +47,7 @@
; Basic files
#define path_svnclient (path_svn + "bin")
+#define path_svnsync (path_svn + "bin")
#define path_svnadmin (path_svn + "bin")
#define path_svnlook (path_svn + "bin")
#define path_svnserve (path_svn + "bin")
@@ -72,6 +73,7 @@
;Debug symbols ----------------------------------------------------------------
; Basic files
#define path_svnclient_pdb (path_svn + "bin")
+#define path_svnsync_pdb (path_svn + "bin")
#define path_svnadmin_pdb (path_svn + "bin")
#define path_svnlook_pdb (path_svn + "bin")
#define path_svnserve_pdb (path_svn + "bin")
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Sep 10 16:03:15 2006