Navigation Menu

Skip to content

Commit

Permalink
misc: add -l parameter to rsync calls.
Browse files Browse the repository at this point in the history
Akin to updating the default macports.conf configuration file in
ff4f043 also change the actual defaults
everywhere.

Fixes: https://trac.macports.org/ticket/53414
  • Loading branch information
Ionic committed Feb 12, 2017
1 parent ff4f043 commit b5daf1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/macports.conf.5.txt
Expand Up @@ -160,7 +160,7 @@ rsync_dir::

rsync_options::
Default rsync options to use when connecting to the rsync server.
*Default:*;; -rtzv --delete-after
*Default:*;; -rtzvl --delete-after

binpath::
Sets the directory search path for locating system executables used by
Expand Down
2 changes: 1 addition & 1 deletion src/macports1.0/macports.tcl
Expand Up @@ -923,7 +923,7 @@ proc mportinit {{up_ui_options {}} {up_options {}} {up_variations {}}} {
}
if {![info exists rsync_options]} {
global macports::rsync_options
set rsync_options "-rtzv --delete-after"
set rsync_options "-rtzvl --delete-after"
}

set portsharepath ${prefix}/share/macports
Expand Down
2 changes: 1 addition & 1 deletion tests/test-macports.conf
Expand Up @@ -36,7 +36,7 @@ rsync_server rsync.macports.org
rsync_dir macports/release/base/

# Rsync options
rsync_options -rtzv --delete-after
rsync_options -rtzvl --delete-after

# Options for generated startup items
# startupitem_type may be "default", "systemstarter", or "launchd";
Expand Down

0 comments on commit b5daf1a

Please sign in to comment.