diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-01-23 16:18:37 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-01-23 16:18:37 +0000 |
commit | d6ea27be120889a2f57b800cfa093adad6c5122e (patch) | |
tree | 60c341bb853b13af5924a4e2a46a75af63469658 /www/arena | |
parent | 6e283a68ea901590db8d553fcd5b26d329624b09 (diff) | |
download | pkgsrc-d6ea27be120889a2f57b800cfa093adad6c5122e.tar.gz |
create the link to wwwconf.h in WRKSRC instead of WRKDIR since the search
path wasn't being honored.
fixes recently noted bulk build problems.
Diffstat (limited to 'www/arena')
-rw-r--r-- | www/arena/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/arena/Makefile b/www/arena/Makefile index eb95ba26b49..31d41b940b9 100644 --- a/www/arena/Makefile +++ b/www/arena/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2001/01/04 17:54:27 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2001/01/23 16:18:37 dmcmahill Exp $ # FreeBSD Id: Makefile,v 1.10 1998/05/04 20:22:31 jseger Exp # @@ -30,14 +30,14 @@ CONFIGURE_ARGS+= --with-arenarc-dir=${LOCALBASE}/etc CONFIGURE_ARGS+= --with-libwww-config-h-dir=${WRKDIR} CONFIGURE_ARGS+= --with-libwww-include=${LOCALBASE}/include/w3c-libwww CONFIGURE_ARGS+= --with-libwww-libdir=${LOCALBASE}/lib -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include -I${WRKDIR}" +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" # Arena requires libwww's "config.h" header - it is installed as "wwwconf.h", -# so make a symlink in ${WRKDIR} and add it to the -I list. +# so make a symlink in ${WRKSRC} pre-configure: for c in ${LOCALBASE}/include/w3c-libwww/wwwconf.h ${LOCALBASE}/include/wwwconf.h; do \ if [ -f $$c ]; then \ - ${LN} -sf $$c ${WRKDIR}/config.h; \ + ${LN} -sf $$c ${WRKSRC}/config.h; \ fi; \ done cd ${WRKSRC} && autoconf |