From 043e832c02d5a8e81f1a4f1b41e6fa8154b74226 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 25 Mar 2014 15:58:46 -0600 Subject: [PATCH] fix OpenJDK and Android build regression c2bfba9 introduced a regression such that building against a non-Avian class library failed due to avian.Cell not being added to the library. Since avian.Continuations depends on that class, the build broke. --- makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/makefile b/makefile index f4be56d570..6728a8a0ea 100755 --- a/makefile +++ b/makefile @@ -1330,6 +1330,7 @@ ifneq ($(classpath),avian) $(classpath-src)/avian/AnnotationInvocationHandler.java \ $(classpath-src)/avian/Assembler.java \ $(classpath-src)/avian/Callback.java \ + $(classpath-src)/avian/Cell.java \ $(classpath-src)/avian/ClassAddendum.java \ $(classpath-src)/avian/InnerClassReference.java \ $(classpath-src)/avian/Classes.java \