diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2002-04-17 13:16:03 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2002-04-17 13:16:03 +0000 |
commit | 0964ff33fd26d74fae35abf5aa77325eceefb985 (patch) | |
tree | 1d8cbaa5f4ffd06bc724239faf2b97fc5304ad6f /net/vtun | |
parent | 90d269289ab369ac44ceed2b047f061341826fec (diff) | |
download | ports-0964ff33fd26d74fae35abf5aa77325eceefb985.tar.gz ports-0964ff33fd26d74fae35abf5aa77325eceefb985.zip |
Change to use ${OPENSSLBASE} instead of ${LOCALBASE} in Makefile
for location of OpenSSL.
PR: 36427
Submitted by: Hidekazu Kuroki <hidekazu@pc88.gr.jp>
Notes
Notes:
svn path=/head/; revision=57810
Diffstat (limited to 'net/vtun')
-rw-r--r-- | net/vtun/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/vtun/Makefile b/net/vtun/Makefile index cbbf353f0339..37d46d39c1ca 100644 --- a/net/vtun/Makefile +++ b/net/vtun/Makefile @@ -22,8 +22,8 @@ MANCOMPRESSED= no USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--localstatedir=/var \ - --with-ssl-headers=${LOCALBASE}/include/openssl \ - --with-ssl-lib=${LOCALBASE}/lib \ + --with-ssl-headers=${OPENSSLBASE}/include/openssl \ + --with-ssl-lib=${OPENSSLBASE}/lib \ --with-lzo-headers=${LOCALBASE}/include \ --with-lzo-lib=${LOCALBASE}/lib |