[Mono-devel-list] mini/Makefile.am patch for non JIT platforms

Paolo Molaro lupus at ximian.com
Wed Jul 2 13:53:30 EDT 2003


On 07/02/03 Bernie Solomon wrote:
> If building on a machine where JIT isn't supported the Makefile in mini tried to do something it shouldn't and hung trying to read from stdin. Here is a small patch to stop anything being built on such platforms.

cvs has already a fix for it (included here). Does it not work for you?

Index: Makefile.am
===================================================================
RCS file: /cvs/public/mono/mono/mini/Makefile.am,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -p -r1.25 -r1.26
--- Makefile.am	18 Jun 2003 14:18:56 -0000	1.25
+++ Makefile.am	1 Jul 2003 14:06:03 -0000	1.26
@@ -100,15 +100,17 @@ if X86
 libmono_la_SOURCES = \
 	$(common_sources) $(x86_sources)
 
-BURGSRC= $(common_BURGSRC) $(srcdir)/inssel-x86.brg
+arch_BURGSRC= $(srcdir)/inssel-x86.brg
 endif
 
 if POWERPC
 libmono_la_SOURCES = \
 	$(common_sources) $(ppc_sources)
 
-BURGSRC= $(common_BURGSRC) $(srcdir)/inssel-ppc.brg
+arch_BURGSRC= $(srcdir)/inssel-ppc.brg
 endif
+
+BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
 
 libmonoincludedir = $(includedir)/mono/jit
 

lupus

-- 
-----------------------------------------------------------------
lupus at debian.org                                     debian/rules
lupus at ximian.com                             Monkeys do it better



More information about the Mono-devel-list mailing list