diff options
author | agc <agc> | 2000-07-19 09:37:49 +0000 |
---|---|---|
committer | agc <agc> | 2000-07-19 09:37:49 +0000 |
commit | 9f07f6bbecdd8781df7b725edab91f219f01491a (patch) | |
tree | d0e87ab97d11b4e20f6359b28ecd77f4c324bc33 /sysutils/cdrdao | |
parent | 7ffbae6bd033c26548c6efa843996551d04ab15d (diff) | |
download | pkgsrc-9f07f6bbecdd8781df7b725edab91f219f01491a.tar.gz |
Don't continue BUILD_DEPENDS line with a '\' - instead, use the
make(1) += construction on the continued line, so that it's easier to
find specific dependencies using grep(1).
Diffstat (limited to 'sysutils/cdrdao')
-rw-r--r-- | sysutils/cdrdao/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/cdrdao/Makefile b/sysutils/cdrdao/Makefile index 4332201e54c..61e90bb6b4a 100644 --- a/sysutils/cdrdao/Makefile +++ b/sysutils/cdrdao/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/07/07 16:25:02 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.3 2000/07/19 09:37:49 agc Exp $ # DISTNAME= cdrdao-1.1.3.src @@ -9,10 +9,10 @@ MASTER_SITES= http://www.ping.de/sites/daneb/ MAINTAINER= David Maxwell <david@maxwell.net> HOMEPAGE= http://www.ping.de/sites/daneb/cdrdao.html -BUILD_DEPENDS= antlr:../../devel/pccts \ - dlg:../../devel/pccts \ - genmk:../../devel/pccts \ - sor:../../devel/pccts +BUILD_DEPENDS= antlr:../../devel/pccts +BUILD_DEPENDS+= dlg:../../devel/pccts +BUILD_DEPENDS+= genmk:../../devel/pccts +BUILD_DEPENDS+= sor:../../devel/pccts GNU_CONFIGURE= YES USE_GMAKE= YES |