diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2000-02-15 06:58:44 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2000-02-15 06:58:44 +0000 |
commit | 88278c687f5bd2243a18b8f0d00daff1f19a40d1 (patch) | |
tree | b9e8a50661d0a8086b5d7c53ac0d03234a4dd242 /www/w3m | |
parent | Maxim has already done this work. (diff) |
Fix build error for -current non-US users.
PR: 16711
Diffstat (limited to 'www/w3m')
-rw-r--r-- | www/w3m/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile index dc930a463f7b..38d1e38bab07 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -50,10 +50,10 @@ SSL_LIBS= -L${OPENSSLLIB} -lssl -lcrypto SED_CMD+= -e "s,undef USE_SSL,define USE_SSL,g" .if defined(OPENSSL_RSAREF) -EXTRA_SSL_LIBS= -lRSAglue -L${LOCALBASE}/lib -lrsaref +EXTRA_SSL_LIBS= -lRSAglue -lrsaref .endif MAKE_FLAGS+= DEFS="${SSL_CFLAGS} -I${LOCALBASE}/include" \ - LIBS="${SSL_LIBS} ${EXTRA_SSL_LIBS}" + LIBS="${SSL_LIBS} ${EXTRA_SSL_LIBS} -L${LOCALBASE}/lib" .else MAKE_FLAGS+= DEFS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" .endif |