implement PKCS #8 / SEC1 private key format for ECC
[openssl.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index d0c7b02f534e75a401d79fd2420762ca979378d5..1c3f3c3fe92298d740f18014d1196b4dcf02c189 100644 (file)
--- a/INSTALL
+++ b/INSTALL
      If a test fails, look at the output.  There may be reasons for
      the failure that isn't a problem in OpenSSL itself (like a missing
      or malfunctioning bc).  If it is a problem with OpenSSL itself,
-     try removing any compiler optimization flags from the CFLAGS line
+     try removing any compiler optimization flags from the CFLAG line
      in Makefile.ssl and run "make clean; make". Please send a bug
      report to <openssl-bugs@openssl.org>, including the output of
      "make report" in order to be added to the request tracker at
        cd objtree/"`uname -s`-`uname -r`-`uname -m`"
        (cd $OPENSSL_SOURCE; find . -type f) | while read F; do
                mkdir -p `dirname $F`
-               ln -s $OPENSSL_SOURCE/$F $F
+               rm -f $F; ln -s $OPENSSL_SOURCE/$F $F
+               echo $F '->' $OPENSSL_SOURCE/$F
        done
+       make -f Makefile.org clean
 
  OPENSSL_SOURCE is an environment variable that contains the absolute (this
  is important!) path to the OpenSSL source tree.