ソースを参照

Make sure the fake target runs with only 1 make job

Markus Hennecke 6 年 前
コミット
d2e6b95621
1 ファイル変更2 行追加2 行削除
  1. 2 2
      autoupdate.pl

+ 2 - 2
autoupdate.pl

@@ -572,7 +572,7 @@ sub build_pkg {
 	$cmd .= 'MAKE_JOBS=' . $info->{jobs} . ' ';
 	$cmd .= "FLAVOR=\"$info->{flavor}\" " if ($info->{flavor} ne '');
 	$cmd .= "SUBPACKAGE=$info->{subpkg} " if ($info->{subpkg} ne '');
-	$cmd .= 'make repackage';
+	$cmd .= 'make build';
 
 	# chdir into the ports directory
 	chdir $port_dir or die "Unable to change to \"$port_dir\"\n";
@@ -607,7 +607,7 @@ sub build_pkg {
 		$cmd .= "SUBPACKAGE=$info->{subpkg} "
 		    if ($info->{subpkg} ne '');
 		$cmd .= $sudo if ($sudo_make_clean);
-		$cmd .= ' make update clean';
+		$cmd .= ' make repackage update clean';
 		open($in, "$cmd 2>&1 |")
 		    or die "Unable to update \"$port\"\n";
 		while (<$in>) {