diff --git config/init/defaults.pm config/init/defaults.pm
index be75c59..6f8e6f8 100644
|
|
|
|
| 74 | 74 | |
| 75 | 75 | my $ccdlflags = $Config{ccdlflags}; |
| 76 | 76 | $ccdlflags =~ s/\s*-Wl,-rpath,\S*//g if $conf->options->get('disable-rpath'); |
| | 77 | (my $build_dir = abs_path($FindBin::Bin)) =~ s/([^-A-Za-z0-9_\/])/\\$1/g; |
| | 78 | |
| 77 | 79 | |
| 78 | 80 | # We need a Glossary somewhere! |
| 79 | 81 | $conf->data->set( |
| 80 | 82 | debugging => $conf->options->get('debugging') ? 1 : 0, |
| 81 | 83 | optimize => '', |
| 82 | 84 | verbose => $conf->options->get('verbose'), |
| 83 | | build_dir => abs_path($FindBin::Bin), |
| | 85 | build_dir => $build_dir, |
| 84 | 86 | configured_from_file => |
| 85 | 87 | $conf->options->get('configured_from_file') || '', |
| 86 | 88 | configuration_steps => ( join q{ } => $conf->get_list_of_steps() ), |