From 05cee6f0c97936e58be6ec625d851afb3d63495e Mon Sep 17 00:00:00 2001 From: tupshin Date: Mon, 22 Mar 2004 22:26:37 +0000 Subject: [PATCH] build fix: make sure that org.ibex.plat.JVM is always preprocessed into build/java I'm not sure why this is necessary, but I've run into a problem with this not working a number of times darcs-hash:20040322222637-a9258-1e5af9ce6f070f8be71bd59929c0cb982977a843.gz --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d09fcb1..fbe7bcd 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ include Makefile.upstream # xargs --replace make -s superclass_org.ibex.plat.{} plat_classes_AWT := org.ibex.plat.AWT -plat_classes_Java2 := org.ibex.plat.Java2 $(plat_classes_AWT) +plat_classes_Java2 := org.ibex.plat.Java2 org.ibex.plat.JVM $(plat_classes_AWT) plat_classes_GCJ := org.ibex.plat.GCJ plat_classes_Win32 := org.ibex.plat.Win32 $(plat_classes_GCJ) plat_classes_POSIX := org.ibex.plat.POSIX $(plat_classes_GCJ) -- 1.7.10.4