diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-04-05 13:27:21 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-04-05 13:27:21 +0000 |
commit | 3cd8af21a213f71630b07fa82de28c74a6f2ed08 (patch) | |
tree | 669e253546b6c2bd30934ce725716446ac728d2d /ports-mgmt | |
parent | f9af6da84e06a472efc0318c30e402ea2f5664c8 (diff) | |
download | ports-3cd8af21a213f71630b07fa82de28c74a6f2ed08.tar.gz ports-3cd8af21a213f71630b07fa82de28c74a6f2ed08.zip |
Notes
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/porteasy/Makefile | 1 | ||||
-rw-r--r-- | ports-mgmt/porteasy/src/porteasy.pl | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ports-mgmt/porteasy/Makefile b/ports-mgmt/porteasy/Makefile index 536b055f49a4..1b9e4505d397 100644 --- a/ports-mgmt/porteasy/Makefile +++ b/ports-mgmt/porteasy/Makefile @@ -9,6 +9,7 @@ PORTNAME= porteasy PORTVERSION= 2.7.13 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= # none DISTFILES= # none diff --git a/ports-mgmt/porteasy/src/porteasy.pl b/ports-mgmt/porteasy/src/porteasy.pl index 26195ae3980f..04a8801fd7cc 100644 --- a/ports-mgmt/porteasy/src/porteasy.pl +++ b/ports-mgmt/porteasy/src/porteasy.pl @@ -1018,8 +1018,10 @@ sub build_port($) { push(@makeargs, "DEPENDS_CLEAN=YES"); } setproctitle("building $port"); - make($port, @makeargs) - or bsd::errx(1, "failed to %s %s", $packages ? "package" : "build", $port); + if (!make($port, @makeargs)) { + bsd::errx(1, "failed to %s %s", + $packages ? "package" : "build", $port); + } setproctitle(); } @@ -1226,7 +1228,7 @@ MAIN:{ # Step 6: list installed ports if ($status) { - foreach $port (keys(%reqd)) { + foreach $port (sort({ $pkgname{$a} cmp $pkgname{$b} } keys(%reqd))) { show_port_status($port); } } |