diff options
author | agc <agc@pkgsrc.org> | 2017-01-19 18:52:01 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2017-01-19 18:52:01 +0000 |
commit | a16b650423ebac0d6db54146c732a10b971237a4 (patch) | |
tree | 61b24a35333bd0bb01124d6015191764d7bafa22 /net/rsync | |
parent | 48e28cf6cad6bf88a5da716ad8af07695b962574 (diff) | |
download | pkgsrc-a16b650423ebac0d6db54146c732a10b971237a4.tar.gz |
Convert all occurrences (353 by my count) of
MASTER_SITES= site1 \
site2
style continuation lines to be simple repeated
MASTER_SITES+= site1
MASTER_SITES+= site2
lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint
accordingly.
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 4aced20b29c..25f536e8b6e 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.103 2015/12/23 19:53:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.104 2017/01/19 18:52:20 agc Exp $ DISTNAME= rsync-3.1.2 CATEGORIES= net -MASTER_SITES= http://rsync.samba.org/ftp/rsync/ \ - http://rsync.samba.org/ftp/rsync/old-versions/ \ - ftp://ftp.fu-berlin.de/unix/network/rsync/ +MASTER_SITES= http://rsync.samba.org/ftp/rsync/ +MASTER_SITES+= http://rsync.samba.org/ftp/rsync/old-versions/ +MASTER_SITES+= ftp://ftp.fu-berlin.de/unix/network/rsync/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://rsync.samba.org/ |