[svn:parrot] r40120 - trunk/config/init

allison at svn.parrot.org allison at svn.parrot.org
Thu Jul 16 18:53:21 UTC 2009


Author: allison
Date: Thu Jul 16 18:53:20 2009
New Revision: 40120
URL: https://trac.parrot.org/parrot/changeset/40120

Log:
[install] Provide configuration details for GnuFreeBSD, which uses the
same configuration options as Linux. Resolves Debian bug #531381. Thanks
to Petr Salinger for reporting the issue, testing and revising the
patch.

Modified:
   trunk/config/init/hints.pm

Modified: trunk/config/init/hints.pm
==============================================================================
--- trunk/config/init/hints.pm	Thu Jul 16 17:13:22 2009	(r40119)
+++ trunk/config/init/hints.pm	Thu Jul 16 18:53:20 2009	(r40120)
@@ -37,6 +37,7 @@
     my $hints_used = 0;
 
     my $osname = lc( $conf->data->get_p5('OSNAME') );
+    $osname = 'linux' if ($osname eq 'gnukfreebsd');
     my $hints_file = catfile('config', 'init', 'hints', "$osname.pm");
     if ( -f $hints_file ) {
         my $hints_pkg = "init::hints::" . $osname;


More information about the parrot-commits mailing list