Fixed a typo.

Submitted by:
Reviewed by:
PR:
diff --git a/Configure b/Configure
index 9b4e130..c1d906d 100755
--- a/Configure
+++ b/Configure
@@ -478,7 +478,7 @@
 open(OUT,'>crypto/opensslconf.h') || die "unable to create crypto/opensslconf.h:$!\n";
 while (<IN>)
 	{
-	if	(/^#defined\s+OPENSSLDIR/)
+	if	(/^#define\s+OPENSSLDIR/)
 		{ print OUT "#define OPENSSLDIR $openssldir\n"; }
 	elsif	(/^#((define)|(undef))\s+SIXTY_FOUR_BIT_LONG/)
 		{ printf OUT "#%s SIXTY_FOUR_BIT_LONG\n",($b64l)?"define":"undef"; }