[svn:parrot] r36738 - trunk/tools/dev

allison at svn.parrot.org allison at svn.parrot.org
Sun Feb 15 00:00:33 UTC 2009


Author: allison
Date: Sun Feb 15 00:00:32 2009
New Revision: 36738
URL: https://trac.parrot.org/parrot/changeset/36738

Log:
[install] Handle any compiler files installed in the main package.

Modified:
   trunk/tools/dev/install_files.pl

Modified: trunk/tools/dev/install_files.pl
==============================================================================
--- trunk/tools/dev/install_files.pl	Sat Feb 14 22:38:50 2009	(r36737)
+++ trunk/tools/dev/install_files.pl	Sun Feb 15 00:00:32 2009	(r36738)
@@ -215,6 +215,10 @@
         # --pkgconfigdir option.
         $dest = File::Spec->catdir( $options{libdir}, 'pkgconfig', $parrotdir, $dest );
     }
+    elsif ( /^compilers/ ) {
+	$dest =~ s/^compilers/languages/;
+        $dest = File::Spec->catdir( $options{libdir}, $parrotdir, $dest );
+    }
     else {
         die "Unknown install location in MANIFEST: $_";
     }


More information about the parrot-commits mailing list