Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-01-10 13:56:21 +0300
committerRichard Levitte <levitte@openssl.org>2003-01-10 13:56:21 +0300
commitfa47b4d8b827d9fccc9ca0a190b87da56fd520fb (patch)
tree1d8c8f13680b64231e4d43da70d2e59849ceb7de /CHANGES
parent661ef5eead04052bed050ec389625da3070384b5 (diff)
When preparing a separate build tree, don't make softlinks to softlinks.
Add instructions in INSTALL, for easy access. PR: 437
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index bc9828a92e..2b22857f63 100644
--- a/CHANGES
+++ b/CHANGES
@@ -181,7 +181,7 @@
# is assumed to contain the absolute OpenSSL source directory.
mkdir -p objtree/"`uname -s`-`uname -r`-`uname -m`"
cd objtree/"`uname -s`-`uname -r`-`uname -m`"
- (cd $OPENSSL_SOURCE; find . -type f -o -type l) | while read F; do
+ (cd $OPENSSL_SOURCE; find . -type f) | while read F; do
mkdir -p `dirname $F`
ln -s $OPENSSL_SOURCE/$F $F
done