diff options
author | mandree <mandree@FreeBSD.org> | 2012-12-18 16:14:02 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2012-12-18 16:14:02 +0800 |
commit | 41f854b69b4245e2938b56669da1bfa0e0969f3b (patch) | |
tree | 8b1249e08a2b37bc88857d33c5bd0d9a6515897f /sysutils | |
parent | 08a8eaa316663889c0652bd011b4fce779fb0f31 (diff) | |
download | freebsd-ports-gnome-41f854b69b4245e2938b56669da1bfa0e0969f3b.tar.gz freebsd-ports-gnome-41f854b69b4245e2938b56669da1bfa0e0969f3b.tar.zst freebsd-ports-gnome-41f854b69b4245e2938b56669da1bfa0e0969f3b.zip |
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.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/dvd+rw-tools/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysutils/dvd+rw-tools/Makefile b/sysutils/dvd+rw-tools/Makefile index 72980019df15..2f1877fbbd7b 100644 --- a/sysutils/dvd+rw-tools/Makefile +++ b/sysutils/dvd+rw-tools/Makefile @@ -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 |