diff options
author | nork <nork@FreeBSD.org> | 2003-02-16 23:23:21 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-02-16 23:23:21 +0800 |
commit | fca7e12ec4a3d6638b4706c4c0dc861251c8cda3 (patch) | |
tree | 3155d060717f8c10b7a3b372273e1bdd3bf80411 /Tools | |
parent | 07f07658f986179066a9f743d6a3fadac94263e4 (diff) | |
download | freebsd-ports-gnome-fca7e12ec4a3d6638b4706c4c0dc861251c8cda3.tar.gz freebsd-ports-gnome-fca7e12ec4a3d6638b4706c4c0dc861251c8cda3.tar.zst freebsd-ports-gnome-fca7e12ec4a3d6638b4706c4c0dc861251c8cda3.zip |
Change how to get CATEGORIES tag from new port for slave port.
Approved by: will
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/addport | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport index 6ae6c51a6658..d95ce016f79e 100755 --- a/Tools/scripts/addport +++ b/Tools/scripts/addport @@ -193,8 +193,8 @@ foreach my $thisdir (@dirs) { # Get the category name and make it suitable for use with cvs my $category; - $_ = `grep CATEGORIES Makefile`; - m/\w+\W+([\w-]+)/; + $_ = `$make -V CATEGORIES`; + m/([\w-]+)/; $category = $1; chomp $category; if ($interactive) { |