diff options
author | Cy Schubert <cy@FreeBSD.org> | 2020-03-17 01:43:09 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2020-03-17 01:43:09 +0000 |
commit | 630e78e655eeae9c82620c69dd803470993d2f6a (patch) | |
tree | 5c8a4a10c630798403a65dc3d9d48b22e72d6569 /security/krb5-appl | |
parent | c35c9ef58fe10ec2f76aa5c1add9dfe370e6c7a5 (diff) |
Simplify configuration.
PR: 244812
Submitted by: John Hein <jcfyecrayz at liamekaens.com> (with modification)
Notes
Notes:
svn path=/head/; revision=528552
Diffstat (limited to 'security/krb5-appl')
-rw-r--r-- | security/krb5-appl/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/security/krb5-appl/Makefile b/security/krb5-appl/Makefile index 6b41072310d4..0aef3330eb39 100644 --- a/security/krb5-appl/Makefile +++ b/security/krb5-appl/Makefile @@ -25,7 +25,7 @@ GNU_CONFIGURE= yes USE_PERL5= build USE_LDCONFIG= yes USE_CSTD= gnu89 -CONFIGURE_ARGS?= --enable-shared --with-krb5=${PREFIX}/bin/krb5-config +CONFIGURE_ARGS?= --enable-shared --with-krb5=${KRB5_HOME} CONFIGURE_ENV= INSTALL="${INSTALL}" YACC=/usr/bin/yacc MAKE_ARGS= INSTALL="${INSTALL}" PATCH_DIST_STRIP= -p1 @@ -49,13 +49,6 @@ KRB5_DOC_BUILD_DEPENDS+= texi2dvi:print/texinfo \ dvips:print/dvipsk-tetex KRB5_DOC_INFO= krb5-admin krb5-install krb5-user -.if defined(KRB5_HOME) -PREFIX= ${KRB5_HOME} -.if ${KRB5_HOME} != ${LOCALBASE} -BROKEN= LIB_DEPENDS when using KRB5_HOME is broken -.endif -.endif - CFLAGS+= -I${PREFIX}/include LDFLAGS+= -L${PREFIX}/lib |