diff options
author | brnrd <brnrd@FreeBSD.org> | 2017-07-25 01:51:15 +0800 |
---|---|---|
committer | brnrd <brnrd@FreeBSD.org> | 2017-07-25 01:51:15 +0800 |
commit | 69258e6c732538d6c45564ec30cd6b15779063d1 (patch) | |
tree | a6a30de056979ecae3b4a33147afd085daa2f0bf /security/openssl | |
parent | f682f61a518ff20ba47b1ed5ce00af6816e16de7 (diff) | |
download | freebsd-ports-gnome-69258e6c732538d6c45564ec30cd6b15779063d1.tar.gz freebsd-ports-gnome-69258e6c732538d6c45564ec30cd6b15779063d1.tar.zst freebsd-ports-gnome-69258e6c732538d6c45564ec30cd6b15779063d1.zip |
security/openssl: Fix MASTER_SITE_SUBDIR
- DISTVERSIONFULL is not expanded before assignment
PR: 219929
Submitted by: Fukang Chen <loader@FreeBSD.org>
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 1c75f108f1a9..a931caf512ad 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -7,7 +7,7 @@ PORTEPOCH= 1 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/ -DIST_SUBDIR= ${DISTNAME:C/[a-z]$//} +DIST_SUBDIR= ${PORTNAME}-${DISTVERSION:C/[a-z]$//} MAINTAINER= brnrd@FreeBSD.org COMMENT= SSL and crypto library |