[mythtv] Fix for parallel makes
David Engel
dlengel at attbi.com
Sun May 18 22:47:09 EDT 2003
Here is a small patch to fix a dependency problem that shows up when
running parallel makes with make -j.
David
--
David Engel
dlengel at attbi.com
Index: Makefile
===================================================================
RCS file: /var/lib/mythcvs/mythtv/Makefile,v
retrieving revision 1.26
diff -u -r1.26 Makefile
--- Makefile 3 May 2003 00:19:13 -0000 1.26
+++ Makefile 18 May 2003 04:28:19 -0000
@@ -33,7 +33,7 @@
programs/$(MAKEFILE):
cd programs && $(QMAKE) -o $(MAKEFILE)
-sub-programs: programs/$(MAKEFILE) FORCE
+sub-programs: sub-libs programs/$(MAKEFILE) FORCE
cd programs && $(MAKE) -f $(MAKEFILE)
themes/$(MAKEFILE):
@@ -43,7 +43,7 @@
setup/$(MAKEFILE):
cd setup && $(QMAKE) -o $(MAKEFILE)
-sub-setup: setup/$(MAKEFILE) FORCE
+sub-setup: sub-libs setup/$(MAKEFILE) FORCE
cd setup && $(MAKE) -f $(MAKEFILE)
i18n/$(MAKEFILE):
More information about the mythtv-dev
mailing list