diff options
author | John Marino <marino@FreeBSD.org> | 2016-03-28 10:09:41 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-03-28 10:09:41 +0000 |
commit | a10aef4a72b75ef09e47aced3d54a423f8b1314c (patch) | |
tree | 0386226e9a689905b0aa8fb8ec5dd34d90834504 /ports-mgmt/synth | |
parent | net-mgmt/arpwatch: some patches (diff) |
ports-mgmt/synth: Fix regression
The empty-queue check was supposed to improve pre-fetch behavior,
but it negatively affected other use modes, so remove the check
for now.
Notes
Notes:
svn path=/head/; revision=412036
Diffstat (limited to 'ports-mgmt/synth')
-rw-r--r-- | ports-mgmt/synth/Makefile | 1 | ||||
-rw-r--r-- | ports-mgmt/synth/files/patch-src_portscan-pilot.adb | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ports-mgmt/synth/Makefile b/ports-mgmt/synth/Makefile index 7f2b2da19b47..e5c1b83dd081 100644 --- a/ports-mgmt/synth/Makefile +++ b/ports-mgmt/synth/Makefile @@ -4,6 +4,7 @@ PORTNAME= synth PORTVERSION= 1.33 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= ports-mgmt MAINTAINER= marino@FreeBSD.org diff --git a/ports-mgmt/synth/files/patch-src_portscan-pilot.adb b/ports-mgmt/synth/files/patch-src_portscan-pilot.adb new file mode 100644 index 000000000000..0eb7fe1e9982 --- /dev/null +++ b/ports-mgmt/synth/files/patch-src_portscan-pilot.adb @@ -0,0 +1,12 @@ +--- src/portscan-pilot.adb.orig 2016-03-27 14:03:52 UTC ++++ src/portscan-pilot.adb +@@ -275,9 +275,6 @@ package body PortScan.Pilot is + (repository => JT.USS (PM.configuration.dir_repository), + dry_run => dry_run, suppress_remote => block_remote); + bld_counter := (OPS.queue_length, 0, 0, 0, 0); +- if PKG.queue_is_empty then +- return False; +- end if; + if dry_run then + return True; + end if; |