Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2012 08:14:03 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309151 - head/sysutils/dvd+rw-tools
Message-ID:  <201212180814.qBI8E30J092726@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mandree
Date: Tue Dec 18 08:14:02 2012
New Revision: 309151
URL: http://svnweb.freebsd.org/changeset/ports/309151

Log:
  Work around empty build on some systems, by using GNU make.
  The reason is probably something else, but I have not found it yet in debugging.
  Feel free to debug and fix the real problem and then (only then) remove
  the USE_GMAKE=yes again.

Modified:
  head/sysutils/dvd+rw-tools/Makefile

Modified: head/sysutils/dvd+rw-tools/Makefile
==============================================================================
--- head/sysutils/dvd+rw-tools/Makefile	Tue Dec 18 07:57:31 2012	(r309150)
+++ head/sysutils/dvd+rw-tools/Makefile	Tue Dec 18 08:14:02 2012	(r309151)
@@ -14,6 +14,14 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	DVD burning software
 
 USE_CDRTOOLS=	yes
+# On some systems, among them one 900044 i386, the do-build-invoked
+# "make" will just do nothing for reasons not yet found, as of
+# dvd+rw-tools 7.1. It is supposed to call
+# (m4 -DOS=`uname -s` Makefile.m4 | make -f - dvd+rw-tools)
+# but returns success right away.
+# Using gmake bypasses this problem for unknown reasons. Please leave it in,
+# until the problem is analyzed and fixed - and please comment the fix here.
+USE_GMAKE=	yes
 
 MAN1=		growisofs.1
 BIN_FILES=	growisofs dvd+rw-format dvd+rw-booktype dvd+rw-mediainfo dvd-ram-control



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212180814.qBI8E30J092726>