Ticket #474: parrot-1.0.0-rpath-removal.patch
| File parrot-1.0.0-rpath-removal.patch, 0.9 KB (added by mvyskocil, 4 years ago) |
|---|
-
config/inter/libparrot.pm
98 98 # Set -rpath (or equivalent) for executables to find the 99 99 # shared libparrot in the build directory. 100 100 $conf->data->set( 101 rpath_blib => ( $parrot_is_shared && $conf->data->get('rpath') ) 102 ? $conf->data->get('rpath') 103 . $conf->data->get('build_dir') 104 . $conf->data->get('slash') 105 . $conf->data->get('blib_dir') 106 : '' 101 rpath_blib => '' 107 102 ); 108 103 109 104 # Set -rpath (or equivalent) for the installed executables to find the 110 105 # installed shared libparrot. 111 106 $conf->data->set( 112 rpath_lib => ( $parrot_is_shared && $conf->data->get('rpath') ) 113 ? $conf->data->get('rpath') 114 . $conf->data->get('libdir') 115 : '' 107 rpath_lib => '' 116 108 ); 117 109 118 110 unless ( defined( $conf->data->get('libparrot_ldflags') ) ) {
