diff options
author | dinoex <dinoex@FreeBSD.org> | 2001-03-11 13:52:05 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2001-03-11 13:52:05 +0800 |
commit | d0a01fe918d5b67cbc41a3226ce34b905e3e7abc (patch) | |
tree | 65ad8134a83b2e2aed650a4245cae1ee00bd66eb /news | |
parent | c75a43959c3e9c229976da307183bdadb097cd47 (diff) | |
download | freebsd-ports-gnome-d0a01fe918d5b67cbc41a3226ce34b905e3e7abc.tar.gz freebsd-ports-gnome-d0a01fe918d5b67cbc41a3226ce34b905e3e7abc.tar.zst freebsd-ports-gnome-d0a01fe918d5b67cbc41a3226ce34b905e3e7abc.zip |
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
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> |