Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions win32/config_h.PL
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
#!perl -w
use strict;

BEGIN { warn "Running ".__FILE__."\n" };
BEGIN
{
require "Config.pm";
die "Config.pm:$@" if $@;
Config->import;
}
use Config;
use File::Compare qw(compare);
use File::Copy qw(copy);
use File::Basename qw(fileparse);
Expand All @@ -25,8 +19,6 @@ $opt{CONFIG_H} ||= 'config.h';
$opt{CORE_DIR} ||= '../lib/CORE';
$opt{CORE_CONFIG_H} ||= $opt{CORE_DIR} . '/config.h';

warn "Writing $opt{CONFIG_H}\n";

open(SH, "<", $name) || die "Cannot open $name:$!";
while (<SH>)
{
Expand Down
Loading