diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2001-03-11 05:52:05 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2001-03-11 05:52:05 +0000 |
commit | b0de0b2fdb40f07ec8b191fa183b7d05f3ca2245 (patch) | |
tree | 224e90975eb07663b5fe0d5b29ca4812509f57ed /news | |
parent | Fix dependencies (diff) |
Changing path for BUILD_DEPENDS.
For some unknown reason for the i386 ports build had failed,
workdir was searched in: "/tmp/usr/ports/news/cnews/work/"
but created files are at: "/tmp/a/ports/news/cnews/work/"
changed to use ${.CURDIR} instead of ${PORTSDIR}
old: ${WRKDIRPREFIX}${PORTSDIR}/news/cnews/work/
new: ${WRKDIRPREFIX}${.CURDIR}/../cnews/work
Notes
Notes:
svn path=/head/; revision=39547
Diffstat (limited to 'news')
-rw-r--r-- | news/c-nocem/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/news/c-nocem/Makefile b/news/c-nocem/Makefile index a937e50cc2f8..8b75e675fb12 100644 --- a/news/c-nocem/Makefile +++ b/news/c-nocem/Makefile @@ -12,12 +12,13 @@ MASTER_SITES= http://sites.inka.de/~bigred/sw/ \ MAINTAINER= dirk.meyer@dinoex.sub.org -BUILD_DEPENDS= ${WRKDIRPREFIX}${PORTSDIR}/news/cnews/work/conf/substitutions:${PORTSDIR}/news/cnews:configure \ +BUILD_DEPENDS= ${WRKDIRPREFIX}${CNEWSSRC}/conf/substitutions:${PORTSDIR}/news/cnews:configure \ gpg:${PORTSDIR}/security/gnupg WRKSRC= ${WRKDIR}/c-nocem +CNEWSSRC?= ${.CURDIR}/../cnews/work USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-cnews=${WRKDIRPREFIX}/${PORTSDIR}/news/cnews/work +CONFIGURE_ARGS+= --with-cnews=${WRKDIRPREFIX}${CNEWSSRC} .include <bsd.port.mk> |