[Lunar-commits] <moonbase> mkvtoolnix: Fixed non-QT build breaking when MAKES variable not set.
Dave Brown
dagbrown at lunar-linux.org
Wed Jun 8 08:06:20 CEST 2011
commit a9307a8e6d4f97c3ae4caff116f71105765fd842
Author: Dave Brown <dagbrown at lunar-linux.org>
Date: Wed Jun 8 15:06:20 2011 +0900
mkvtoolnix: Fixed non-QT build breaking when MAKES variable not set.
---
video/mkvtoolnix/BUILD | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/video/mkvtoolnix/BUILD b/video/mkvtoolnix/BUILD
index 999fa9d..7509081 100644
--- a/video/mkvtoolnix/BUILD
+++ b/video/mkvtoolnix/BUILD
@@ -1,7 +1,7 @@
(
-# If you choose the qt4 GUI then ./configure craps out with -j $MAKES but works fine if you
-# say no to qt4 GUI.
+# If you choose the qt4 GUI then ./configure craps out with -j
+# $MAKES but works fine if you say no to qt4 GUI.
if in_depends $MODULE qt4 ; then
sedit "s:ui/mainwindow.h:ui/mainwindow.ui:" src/info/qt_ui.h &&
. /etc/profile.d/qt4.rc &&
@@ -9,7 +9,7 @@
./drake
else
default_config &&
- ./drake -j $MAKES
+ ./drake -j ${MAKES:-1}
fi &&
prepare_install &&
More information about the Lunar-commits
mailing list