Author: jhoblitt
Date: Tue Jan 10 01:09:59 2006
New Revision: 11035
Modified:
trunk/MANIFEST.generated
trunk/tools/dev/install_files.pl
Log:
install parrot.pc
Modified: trunk/MANIFEST.generated
==============================================================================
--- trunk/MANIFEST.generated (original)
+++ trunk/MANIFEST.generated Tue Jan 10 01:09:59 2006
@@ -47,6 +47,7 @@ installable_pbc_info
installable_pbc_merge [main]bin
installable_pdb [main]bin
installable_pdump [main]bin
+parrot.pc [main]pkgconfig
pbc_info [main]bin
pbc_merge [main]bin
pdb [main]bin
Modified: trunk/tools/dev/install_files.pl
==============================================================================
--- trunk/tools/dev/install_files.pl (original)
+++ trunk/tools/dev/install_files.pl Tue Jan 10 01:09:59 2006
@@ -194,6 +194,12 @@ while(<>) {
$dest = File::Spec->catdir($options{includedir}, $dest);
} elsif ($meta{doc}) {
$dest = File::Spec->catdir($options{docdir}, $dest);
+ } elsif ($meta{pkgconfig}) {
+ # For the time being this is hardcoded as being installed under libdir
+ # as it is typically donw with automake installed packages. If there
+ # is a use case to make this configurable we'll add a seperate
+ # --pkgconfigdir option.
+ $dest = File::Spec->catdir($options{libdir}, 'pkgconfig', $dest);
} else {
$dest =~ s/^runtime/lib/;
$dest = File::Spec->catdir($options{prefix}, $dest);