diff options
author | agc <agc@pkgsrc.org> | 2000-02-15 09:26:12 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-02-15 09:26:12 +0000 |
commit | 4cffd86a2930792f64b0440f0e5a8c6400e8419e (patch) | |
tree | 4e357f9aabe4d1c5fb73d87778d5e0e3e135ff1f /x11 | |
parent | 63aacb20ee533bf9a53594db96e7f300024c2213 (diff) | |
download | pkgsrc-4cffd86a2930792f64b0440f0e5a8c6400e8419e.tar.gz |
When multi-line dependencies occur, use a "DEPENDS+= package" format
for each of the continuation lines, rather than using backslashes to
continue a single, long definition. This makes it much easier to spot
pre-requisite packages and other dependencies.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/XF86Setup/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/XF86Setup/Makefile b/x11/XF86Setup/Makefile index 62ec5322358..a7f7f721cff 100644 --- a/x11/XF86Setup/Makefile +++ b/x11/XF86Setup/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2000/02/05 15:31:28 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2000/02/15 09:26:25 agc Exp $ DISTNAME= XF86Setup-3.3.6 CATEGORIES= x11 @@ -8,8 +8,8 @@ EXTRACT_SUFX= .tar.bz2 MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.xfree86.org/ -BUILD_DEPENDS= ${TCLLIB}:../../lang/tcl80 \ - ${TKLIB}:../../x11/tk80 +BUILD_DEPENDS= ${TCLLIB}:../../lang/tcl80 +BUILD_DEPENDS+= ${TKLIB}:../../x11/tk80 ONLY_FOR_PLATFORM= *-*-i386 |