Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report.
Summary: Review Request: kaya - A Statically typed, imperative programming-language https://bugzilla.redhat.com/show_bug.cgi?id=286851 ------- Additional Comments From [EMAIL PROTECTED] 2008-05-29 17:12 EST ------- > mock.Root.build: Threads.ki:1:Expected binding - before: ... > mock.Root.build: make[1]: > mock.Root.build: *** [Multicore.o] Error 1 Apologies, that's a bug from us upstream: there's a dependency missing that only seems to be caught with parallel make (I suspect you have access to much broader multicore machines than we do). This patch should fix it. Thanks diff -rN -u old-kaya/libs/Makefile.in new-kaya/libs/Makefile.in --- old-kaya/libs/Makefile.in 2008-05-29 21:50:16.000000000 +0100 +++ new-kaya/libs/Makefile.in 2008-05-29 21:50:18.000000000 +0100 @@ -41,6 +41,8 @@ rm -f *~ Makefile rm -rf autom4te.cache +Multicore.o: Threads.ki +Threads.o: thread_glue.h MyDB.o: my_inter.h ../stdlib/DB.ki PostgresDB.o: pg_inter.h ../stdlib/DB.ki SQLiteDB.o: sqlite_inter.h ../stdlib/DB.ki -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. _______________________________________________ Fedora-package-review mailing list [email protected] http://www.redhat.com/mailman/listinfo/fedora-package-review
