aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xTools/scripts/addport5
1 files changed, 2 insertions, 3 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport
index 8bfc7ac65d36..302052fae55d 100755
--- a/Tools/scripts/addport
+++ b/Tools/scripts/addport
@@ -237,9 +237,8 @@ foreach my $thisdir (@dirs) {
}
# Get the category name and make it suitable for use with svn
- my $category;
- $category = `$make -V PKGCATEGORY`;
- chomp $category;
+ my @categories = split(/ /, `make -VCATEGORIES`);
+ my $category = $categories[0];
if ($interactive) {
if (prompt("Port $portname will be put in category $category. OK? " )) {
do {