Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Mar 2013 17:40:37 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r313371 - head/Tools/scripts
Message-ID:  <201303031740.r23HebPM023932@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: crees
Date: Sun Mar  3 17:40:36 2013
New Revision: 313371
URL: http://svnweb.freebsd.org/changeset/ports/313371

Log:
  Don't hardcode make
  
  Submitted by:	az

Modified:
  head/Tools/scripts/addport

Modified: head/Tools/scripts/addport
==============================================================================
--- head/Tools/scripts/addport	Sun Mar  3 17:38:02 2013	(r313370)
+++ head/Tools/scripts/addport	Sun Mar  3 17:40:36 2013	(r313371)
@@ -237,7 +237,7 @@ foreach my $thisdir (@dirs) {
 	}
 
 	# Get the category name and make it suitable for use with svn
-	my @categories = split(/ /, `make -VCATEGORIES`);
+	my @categories = split(/ /, `$make -VCATEGORIES`);
 	my $category = $categories[0];
 	if ($interactive) {
 		if (prompt("Port $portname will be put in category $category.  OK? " )) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303031740.r23HebPM023932>