Skip to content

Commit

Permalink
eliminating further warnings from Configure.pl
Browse files Browse the repository at this point in the history
Signed-off-by: Bernhard Schmalhofer <Bernhard.Schmalhofer@gmx.de>
  • Loading branch information
szabgab authored and bschmalhofer committed Apr 20, 2009
1 parent 9951e7c commit 123a4b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configure.pl
Expand Up @@ -144,7 +144,7 @@ sub create_files {

$config->{'win32_libparrot_copy'} = $^O eq 'MSWin32' ? 'copy $(BUILD_DIR)\libparrot.dll .' : '';
$content =~ s/@(\w+)@/
defined $config->{$1} ? $config->{$1} : warn("'$1' is missing from parrot_config"), ''/ge;
defined $config->{$1} ? $config->{$1} : (warn("'$1' is missing from parrot_config"), '')/ge;
if ($^O eq 'MSWin32') {
$content =~ s{/}{\\}g;
}
Expand Down

0 comments on commit 123a4b1

Please sign in to comment.