From a9f47e51885686adb1a7bdeb7c0bc158cfad678a Mon Sep 17 00:00:00 2001 From: CyberLeo Date: Sun, 8 Jan 2012 12:30:21 -0600 Subject: [PATCH] script/makepkg: avoid explicitly building ports-mgmt/portmaster since it is implicitly built and installed by port_load_deps --- script/makepkg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/makepkg b/script/makepkg index 492a0e3..55a0fe1 100755 --- a/script/makepkg +++ b/script/makepkg @@ -520,7 +520,8 @@ chport() { meh "load-deps" port_load_deps "${port}" meh "build" - port_build "${port}" + # Avoid building ports-mgmt/portmaster because port_load_deps already has + [ "${port}" = "ports-mgmt/portmaster" ] || port_build "${port}" meh "package" port_package "${port}" meh "stash-deps" -- 2.42.0