# New Ticket Created by  [EMAIL PROTECTED] 
# Please include the string:  [perl #53738]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=53738 >


Hello,

after executing the command "make reallyinstall" the directory "runtime"
isn't installed in the destination directory even there are entries in
the file "MANIFEST.generated" like:
runtime/parrot/include/config.fpmc                [main]

This is because the following instraction from the perl script
"tools/dev/install_files.sh" substitutes all lines starting with the
word runtime:
$dest =~ s/^runtime/lib/;

The attached file "install_files.sh.patch" modifies the instraction, to
make substitions only on lines for libraries.

Tested under Fedora.

Gerd Pokorra

--- tools/dev/install_files.pl	2008-04-29 15:25:26.000000000 +0200
+++ tools/dev/install_files.pl.new	2008-05-05 11:11:52.000000000 +0200
@@ -203,7 +203,7 @@
         $dest = File::Spec->catdir( $options{libdir}, 'pkgconfig', $dest );
     }
     else {
-        $dest =~ s/^runtime/lib/;
+        $dest =~ s/^runtime/lib/ if /\[library]/;
         $dest = File::Spec->catdir( $options{prefix}, $dest );
     }
 

Reply via email to