diff options
author | lloyd <[email protected]> | 2008-09-29 22:01:50 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-29 22:01:50 +0000 |
commit | efc4ec9b46cf774daffc08e279014a0761547b35 (patch) | |
tree | 0a6b1ddb9fc023bf6e0181d6d30784b4fd61d320 /configure.pl | |
parent | eafdb016596f77675fc13a6729084b2c980457a3 (diff) |
Cleanup
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.pl b/configure.pl index 6c7164be8..85d0ebbb2 100755 --- a/configure.pl +++ b/configure.pl @@ -1048,8 +1048,6 @@ sub load_modules { my $gen_defines = sub { my $defines = ''; - my $arch = $$config{'arch'}; - my $os = $$config{'os'}; if($os ne 'generic') { $defines .= '#define BOTAN_TARGET_OS_IS_' . uc $os . "\n"; @@ -1062,6 +1060,7 @@ sub load_modules { $defines .= "\n"; } + my $arch = $$config{'arch'}; if($arch ne 'generic') { my %cpu_info = %{$CPU{$arch}}; my $endian = $cpu_info{'endian'}; |