[svn:parrot] r36730 - trunk/config/gen/makefiles

Infinoid at svn.parrot.org Infinoid at svn.parrot.org
Sat Feb 14 15:46:52 UTC 2009


Author: Infinoid
Date: Sat Feb 14 15:46:51 2009
New Revision: 36730
URL: https://trac.parrot.org/parrot/changeset/36730

Log:
[cage] parrot_debugger makefile rule uses src/parrot_config.o but doesn't
depend on it.  Add the dependency, otherwise build fails with make -j.

Modified:
   trunk/config/gen/makefiles/root.in

Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in	Sat Feb 14 15:45:09 2009	(r36729)
+++ trunk/config/gen/makefiles/root.in	Sat Feb 14 15:46:51 2009	(r36730)
@@ -877,7 +877,7 @@
 
 $(SRC_DIR)/parrot_debugger$(O) : $(GENERAL_H_FILES)
 
-$(PDB) : $(SRC_DIR)/parrot_debugger$(O) $(LIBPARROT)
+$(PDB) : $(SRC_DIR)/parrot_debugger$(O) $(SRC_DIR)/parrot_config$(O) $(LIBPARROT)
 	$(LINK) @ld_out@$@ \
     $(SRC_DIR)/parrot_debugger$(O) \
     $(SRC_DIR)/parrot_config$(O) \


More information about the parrot-commits mailing list