diff options
author | kevlo <kevlo@FreeBSD.org> | 2002-04-17 21:16:03 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2002-04-17 21:16:03 +0800 |
commit | f862b5fc2d4921bc50ad317395f8f7b0d197cbd1 (patch) | |
tree | 7deccd13d7c80de43a8bb49c1262c006d663f496 /net/vtun | |
parent | 577264ff52a95919fecfdd05c35f3b4152135517 (diff) | |
download | freebsd-ports-graphics-f862b5fc2d4921bc50ad317395f8f7b0d197cbd1.tar.gz freebsd-ports-graphics-f862b5fc2d4921bc50ad317395f8f7b0d197cbd1.tar.zst freebsd-ports-graphics-f862b5fc2d4921bc50ad317395f8f7b0d197cbd1.zip |
Change to use ${OPENSSLBASE} instead of ${LOCALBASE} in Makefile
for location of OpenSSL.
PR: 36427
Submitted by: Hidekazu Kuroki <hidekazu@pc88.gr.jp>
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 cbbf353f033..37d46d39c1c 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 |