diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-01-24 10:11:43 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-01-24 10:11:43 +0000 |
commit | cbb91688d85a8a9ae35edf8dcaac1b4643585ff2 (patch) | |
tree | 6043c922e772b1bd19114d33d08f9f526edab4c3 /misc | |
parent | Advise users that the Java plugin is incompatible with linux_base-7. (diff) |
Fix the master port detection logic to correctly handle KDE ports.
Bump version to 2.6.3.
Notes
Notes:
svn path=/head/; revision=53678
Diffstat (limited to 'misc')
-rw-r--r-- | misc/porteasy/Makefile | 2 | ||||
-rw-r--r-- | misc/porteasy/src/porteasy.pl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/misc/porteasy/Makefile b/misc/porteasy/Makefile index 47aef10cf1ae..5c738edd1aa7 100644 --- a/misc/porteasy/Makefile +++ b/misc/porteasy/Makefile @@ -8,7 +8,7 @@ # PORTNAME= porteasy -PORTVERSION= 2.6.2 +PORTVERSION= 2.6.3 CATEGORIES= misc MASTER_SITES= # none DISTFILES= # none diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl index 2c773e6d75b2..115efa23eaa4 100644 --- a/misc/porteasy/src/porteasy.pl +++ b/misc/porteasy/src/porteasy.pl @@ -33,7 +33,7 @@ use strict; use Fcntl; use Getopt::Long; -my $VERSION = "2.6.2"; +my $VERSION = "2.6.3"; my $COPYRIGHT = "Copyright (c) 2000 Dag-Erling Smørgrav. All rights reserved."; # Constants @@ -476,7 +476,7 @@ sub find_master($) { while (<FILE>) { if (/^(?:MAIN|MASTER)DIR\s*=\s*(\S+)\s*$/) { $master = $1; - } elsif (/^\.?include \"([^\"]+)\/Makefile\"\s*$/) { + } elsif (/^\.?include \"([^\"]+)\/Makefile(?:[^\/\"]*)\"\s*$/) { $master = $1; } if (defined($master)) { |