aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorcrees <crees@FreeBSD.org>2013-03-04 01:40:36 +0800
committercrees <crees@FreeBSD.org>2013-03-04 01:40:36 +0800
commit7a0d4a27bcc8f36b240ce22455d86aff4ea8a649 (patch)
treeafec808271f95e64fbf0da95bc5f106679e07ecc /Tools
parentbe96da0a6ff03e3ac62827dfa796e74889a9f492 (diff)
downloadfreebsd-ports-gnome-7a0d4a27bcc8f36b240ce22455d86aff4ea8a649.tar.gz
freebsd-ports-gnome-7a0d4a27bcc8f36b240ce22455d86aff4ea8a649.tar.zst
freebsd-ports-gnome-7a0d4a27bcc8f36b240ce22455d86aff4ea8a649.zip
Don't hardcode make
Submitted by: az
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/addport2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport
index 302052fae55d..1bd23955e32b 100755
--- a/Tools/scripts/addport
+++ b/Tools/scripts/addport
@@ -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? " )) {