> Is there an easy way to remove the dependency to the mono folder  
> completely?

Not easy as a general framework, but for the handful of assemblies that
you guys are using, you could probably just create a profile in:

        mcs/build/profiles

And create say a "unity" profile where you overwrite the compiler
settings to not be a bootstrap compile.  

And then you can build the assemblies that you are interested in like
this:

        for i in mscorlib System  System.Xml System.Core; do
           (cd $i; make PROFILE=unity)
        done

Miguel.

_______________________________________________
Mono-devel-list mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to