Fixed a typo.
authorBodo Möller <bodo@openssl.org>
Sun, 25 Apr 1999 10:28:26 +0000 (10:28 +0000)
committerBodo Möller <bodo@openssl.org>
Sun, 25 Apr 1999 10:28:26 +0000 (10:28 +0000)
Submitted by:
Reviewed by:
PR:

Configure

index 9b4e1307ac9234006d575b7d81363edc31715a5e..c1d906dbdb59c03cff699bc395f0c5ac3b644ebe 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -478,7 +478,7 @@ open(IN,'<crypto/opensslconf.h.in') || die "unable to read crypto/opensslconf.h.
 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"; }