diff options
| author | Michael Forney <mforney@mforney.org> | 2021-05-03 16:40:07 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2021-05-03 16:40:07 -0700 |
| commit | 93722c2dbe45f14acb13d118684244c3c0860fa1 (patch) | |
| tree | 4a6570f23ab3d39c181dcedf29fe41b376b63fad /pkg | |
| parent | a5c305dc398e22ff1d9b1888ecbc8a4a40ce87bd (diff) | |
openbsd: subninja for rsync is no longer needed
rsync doesn't depend on MD4 from OpenSSL since 6d060d5c, so we don't
need the subninja.
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/openbsd/.gitignore | 1 | ||||
| -rw-r--r-- | pkg/openbsd/gen.lua | 22 |
2 files changed, 10 insertions, 13 deletions
diff --git a/pkg/openbsd/.gitignore b/pkg/openbsd/.gitignore index e4ef79b0..11afc151 100644 --- a/pkg/openbsd/.gitignore +++ b/pkg/openbsd/.gitignore @@ -1,4 +1,3 @@ -/rsync.ninja /nc.ninja /src /src.tar.gz diff --git a/pkg/openbsd/gen.lua b/pkg/openbsd/gen.lua index f25142a3..488e6f8c 100644 --- a/pkg/openbsd/gen.lua +++ b/pkg/openbsd/gen.lua @@ -91,17 +91,15 @@ sym('bin/cpio', 'pax') man{'bin/pax/pax.1', 'bin/pax/tar.1', 'bin/pax/cpio.1'} -- rsync -sub('rsync.ninja', function() - exe('rsync', [[ - usr.bin/rsync/( - blocks.c client.c downloader.c fargs.c flist.c hash.c ids.c - io.c log.c mkpath.c mktemp.c receiver.c sender.c server.c session.c - socket.c symlinks.c uploader.c main.c misc.c md4.c - ) - libbsd.a - ]]) - file('bin/rsync', '755', '$outdir/rsync') - man{'usr.bin/rsync/rsync.1', 'usr.bin/rsync/rsync.5', 'usr.bin/rsync/rsyncd.5'} -end) +exe('rsync', [[ + usr.bin/rsync/( + blocks.c client.c downloader.c fargs.c flist.c hash.c ids.c + io.c log.c mkpath.c mktemp.c receiver.c sender.c server.c session.c + socket.c symlinks.c uploader.c main.c misc.c md4.c + ) + libbsd.a +]]) +file('bin/rsync', '755', '$outdir/rsync') +man{'usr.bin/rsync/rsync.1', 'usr.bin/rsync/rsync.5', 'usr.bin/rsync/rsyncd.5'} fetch 'local' |
