aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 22:01:50 +0000
committerlloyd <[email protected]>2008-09-29 22:01:50 +0000
commitefc4ec9b46cf774daffc08e279014a0761547b35 (patch)
tree0a6b1ddb9fc023bf6e0181d6d30784b4fd61d320 /configure.pl
parenteafdb016596f77675fc13a6729084b2c980457a3 (diff)
Cleanup
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl3
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'};