[kde-freebsd] branches/KDE/3.5/kde-common/admin

Adriaan de Groot groot at kde.org
Tue Aug 14 15:26:09 CEST 2007


SVN commit 699978 by adridg:

With layers and layers of dealing-with-auto* magic in various systems,
we find conflicts between various people trying to be smart.
The FreeBSD ports system now installs auto*-wrapper to act kind
of like detect-autoconf.pl already -- but detect-autoconf.pl
finds -wrapper and thinks that it's the latest version of
the autotool in question. Short-circuit that by skipping
the -wrapper tools.

Patch figured out by [ade], Ade & lofi.

CCMAIL: kde at freebsd.org


 M  +2 -0      detect-autoconf.pl  


--- branches/KDE/3.5/kde-common/admin/detect-autoconf.pl #699977:699978
@@ -46,6 +46,8 @@
 
 	    ($version) = $file =~ /$prefix\/$program-?(.*)$/;
 	    $version =~ s/-|\.//g;
+	    # Don't check the -wrapper ones
+	    next if $version eq "wrapper";
 
 	    # Special case some programs to make sure it has a minimum version.
 	    if (not $version and exists $minimumVersions{$program})


More information about the kde-freebsd mailing list