pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/mmg Remove slash from end of DEPENDS.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/09e139a248f4
branches:  trunk
changeset: 491844:09e139a248f4
user:      reed <reed%pkgsrc.org@localhost>
date:      Wed Mar 30 20:15:12 2005 +0000

description:
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:

 multimedia/mmg/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 2cabaedbfbf2 -r 09e139a248f4 multimedia/mmg/Makefile
--- a/multimedia/mmg/Makefile   Wed Mar 30 20:07:20 2005 +0000
+++ b/multimedia/mmg/Makefile   Wed Mar 30 20:15:12 2005 +0000
@@ -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 @@
 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



Home | Main Index | Thread Index | Old Index