svn commit: r309151 - head/sysutils/dvd+rw-tools

Matthias Andree mandree at FreeBSD.org
Tue Dec 18 08:14:03 UTC 2012


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 at 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


More information about the svn-ports-all mailing list