diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-02 06:41:32 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-02 06:41:32 +0000 |
commit | ca5929bc048741fa4d7afdbf7307ed07808240b4 (patch) | |
tree | d93811a74a85ab07ed496721b53b75b62b40a00f /security | |
parent | 76ed4a57975c0d7c08dcc86ebda15457c3e83793 (diff) | |
download | pkgsrc-ca5929bc048741fa4d7afdbf7307ed07808240b4.tar.gz |
The "missing-from-system" headers that Heimdal installs are now placed
into ${PREFIX}/include/krb5/roken instead of ${PREFIX}/include/krb5.
This is good because it reduces the likelihood of a conflict with any
other similarly named headers if you simply add -I${PREFIX}/include/krb5
to the compiler command line.
Patch from PR pkg/38119 by charlie.
Diffstat (limited to 'security')
-rw-r--r-- | security/heimdal/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index 3fff4e2f261..95ba21c381a 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.66 2008/02/29 22:41:13 jlam Exp $ +# $NetBSD: Makefile,v 1.67 2008/03/02 06:41:32 jlam Exp $ DISTNAME= heimdal-1.1 CATEGORIES= security @@ -71,7 +71,7 @@ INFO_FILES= # PLIST # GENERATE_PLIST+= \ ( cd ${WRKSRC}/lib/roken && ${BUILD_MAKE_CMD} print-xheaders | \ - ${XARGS} -n 1 | ${SED} -e "s,^,include/krb5/," ); \ + ${XARGS} -n 1 | ${SED} -e "s,^,include/krb5/roken/," ); \ ${ECHO} "@dirrm include/krb5"; .include "../../devel/readline/buildlink3.mk" |