diff options
author | reed <reed@pkgsrc.org> | 2005-03-30 20:15:12 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-03-30 20:15:12 +0000 |
commit | 36087e6cfdc7dbee69a2264d9b418177eb5dc031 (patch) | |
tree | 68dda49145e413dbf48b9349b649da41bffe12ea /multimedia/mmg | |
parent | bab281e71aa9310ea241982cfc84620bcbca6489 (diff) | |
download | pkgsrc-36087e6cfdc7dbee69a2264d9b418177eb5dc031.tar.gz |
Remove slash from end of DEPENDS.
This caused my bulk build to fail (before building) when it was
building list of dependencies, because multimedia/mmg/Makefile
included ../../multimedia/mkvtoolnix/Makefile.dist and also
depended on ../../multimedia/mkvtoolnix/. And multimedia/mkvtoolnix/Makefile
also included ../../multimedia/mkvtoolnix/Makefile.dist.
The bulk build error was like:
----> Depending in /home/jreed/pkgsrc/multimedia/mmg (pass #1)
----> Depending in ../../multimedia/mkvtoolnix/ (pass #2)
...
----> Depending in ../../multimedia/mkvtoolnix/ (pass #24)
ERROR: You have reached 25 times through the dependency tree
and _still_ not finished. This is probably due to a broken
set of dependencies. You may wish to examine the partial
database left in /home/jreed/pkgsrc/.bulk_db.foo
Removing the trailing slash from the DEPENDS fixed this problem for me.
Diffstat (limited to 'multimedia/mmg')
-rw-r--r-- | multimedia/mmg/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/mmg/Makefile b/multimedia/mmg/Makefile index 7ce8836605e..37e1ec13b94 100644 --- a/multimedia/mmg/Makefile +++ b/multimedia/mmg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/03/23 16:58:39 salo Exp $ +# $NetBSD: Makefile,v 1.10 2005/03/30 20:15:12 reed Exp $ # .include "../../multimedia/mkvtoolnix/Makefile.dist" @@ -8,7 +8,7 @@ MAINTAINER= salo@NetBSD.org HOMEPAGE= http://www.bunkus.org/videotools/mkvtoolnix/doc/mkvmerge-gui.html COMMENT= MKVtoolnix mkvmerge GUI -DEPENDS+= ${DISTNAME}:../../multimedia/mkvtoolnix/ +DEPENDS+= ${DISTNAME}:../../multimedia/mkvtoolnix GNU_CONFIGURE= yes USE_BUILDLINK3= yes |