summaryrefslogtreecommitdiff
path: root/lib/make/configure.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-17 16:46:36 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-17 16:46:36 +0000
commit34c7fba797a486d154a5b49cb376ca018e9d696e (patch)
tree35dc1e193882cb04f41b2a50389ee7707cd959cd /lib/make/configure.pl
parent3e0bcab1dbe95fcde20e558116629787f78ac373 (diff)
Fixed an = rather than == error.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@303 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure.pl')
-rwxr-xr-xlib/make/configure.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/make/configure.pl b/lib/make/configure.pl
index 05248539..654e417c 100755
--- a/lib/make/configure.pl
+++ b/lib/make/configure.pl
@@ -268,11 +268,11 @@ sub determine_transformation
$underscore_suffix = "__";
}
- if($case = 0)
+ if($case == 0)
{
$case_prefix = "\\L";
}
- if($case = 1)
+ if($case == 1)
{
$case_prefix = "\\U";
}