View | Details | Raw Unified | Return to bug 171681 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +8 lines)
Lines 152-162 Link Here
152
152
153
GIT?= git
153
GIT?= git
154
SVN?= svn
154
SVN?= svn
155
RSYNC?= rsync
156
RSYNC_FLAGS?= --recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --verbose
155
PORTSNAP?= portsnap
157
PORTSNAP?= portsnap
156
PORTSNAP_FLAGS?= -p ${.CURDIR}
158
PORTSNAP_FLAGS?= -p ${.CURDIR}
157
.if !target(update)
159
.if !target(update)
158
update:
160
update:
159
.if exists(${.CURDIR}/.svn)
161
.if defined(RSYNC_UPDATE) && defined(PORTS_RSYNC_SOURCE)
162
	@echo "--------------------------------------------------------------"
163
	@echo ">>> Updating with ${RSYNC} from ${PORTS_RSYNC_SOURCE}"
164
	@echo "--------------------------------------------------------------"
165
	@${RSYNC} ${RSYNC_FLAGS} ${PORTS_RSYNC_SOURCE}/ ${.CURDIR}/
166
.elif exists(${.CURDIR}/.svn)
160
	@echo "--------------------------------------------------------------"
167
	@echo "--------------------------------------------------------------"
161
	@echo ">>> Updating ${.CURDIR} using Subversion"
168
	@echo ">>> Updating ${.CURDIR} using Subversion"
162
	@echo "--------------------------------------------------------------"
169
	@echo "--------------------------------------------------------------"

Return to bug 171681