diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-12 21:14:03 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-12 21:54:07 +0100 |
commit | 3c65577f1af1109beb8de06420efa09188981628 (patch) | |
tree | a4462f7bef60133b8e4654c3e0d038d077775108 /crypto/srp | |
parent | Update .gitignore. (diff) | |
download | openssl-3c65577f1af1109beb8de06420efa09188981628.tar.xz openssl-3c65577f1af1109beb8de06420efa09188981628.zip |
Rename INSTALL_PREFIX to DESTDIR, remove option --install_prefix
INSTALL_PREFIX is a confusing name, as there's also --prefix.
Instead, tag along with the rest of the open source world and adopt
the Makefile variable DESTDIR to designate the desired staging
directory.
The Configure option --install_prefix is removed, the only way to
designate a staging directory is with the Makefile variable (this is
also implemented for VMS' descrip.mms et al).
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/srp')
-rw-r--r-- | crypto/srp/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/srp/Makefile.in b/crypto/srp/Makefile.in index 3b654da8dd..eded0e772a 100644 --- a/crypto/srp/Makefile.in +++ b/crypto/srp/Makefile.in @@ -3,7 +3,7 @@ TOP= ../.. CC= cc INCLUDES= -I.. -I$(TOP) -I../../include CFLAG=-g -INSTALL_PREFIX= +DESTDIR= OPENSSLDIR= /usr/local/ssl INSTALLTOP=/usr/local/ssl AR= ar r |