[Mono-dev] Installing mono via copy

2013-12-13 Thread Chris Tacke
I have an embedded Linux platform on which I need to install Mono. The platform does not have any installer tools like apt or whatever. I have to custom build Mono for the platform for a variety of reasons. I am successfully building Mono from source under an Ubuntu machine. That works just

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Chris Tacke
@lists.ximian.com Subject: [Mono-dev] Installing mono via copy I have an embedded Linux platform on which I need to install Mono. The platform does not have any installer tools like apt or whatever. I have to custom build Mono for the platform for a variety of reasons. I am successfully building

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Brandon Perry
...@lists.ximian.com] On Behalf Of Chris Tacke Sent: Friday, December 13, 2013 9:40 AM To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Installing mono via copy I have an embedded Linux platform on which I need to install Mono. The platform does not have any installer tools like apt

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Chris Tacke
[mailto:mono-devel- list- boun...@lists.ximian.com] On Behalf Of Chris Tacke Sent: Friday, December 13, 2013 9:40 AM To: mono-devel-list@lists.ximian.com Subject: [Mono-dev] Installing mono via copy I have an embedded Linux platform on which I need to install Mono. The platform does

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Nikita Tsukanov
- set a custom prefix (and other stuff) during configure That's the problem. It tries to look for mscorlib at $prefix/lib/mono/blablablah instead of /usr/lib. Instead of using custom prefix just configure it with normal (i. e. /usr) and use make install DESTDIR=/path/to/temp/dir. It will install

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Chris Tacke
...@lists.ximian.com] On Behalf Of Nikita Tsukanov Sent: Friday, December 13, 2013 1:06 PM To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Installing mono via copy - set a custom prefix (and other stuff) during configure That's the problem. It tries to look for mscorlib at $prefix/lib/mono/blablablah

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Andrés G. Aragoneses
*Subject:* Re: [Mono-dev] Installing mono via copy - set a custom prefix (and other stuff) during configure That's the problem. It tries to look for mscorlib at $prefix/lib/mono/blablablah instead of /usr/lib. Instead of using custom prefix just configure it with normal (i. e. /usr

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Nikita Tsukanov
to understand. -Chris *From:*mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] *On Behalf Of *Nikita Tsukanov *Sent:* Friday, December 13, 2013 1:06 PM *To:* mono-devel-list@lists.ximian.com *Subject:* Re: [Mono-dev] Installing

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Andrés G. Aragoneses
...@lists.ximian.com mailto:mono-devel-list-boun...@lists.ximian.com] *On Behalf Of *Nikita Tsukanov *Sent:* Friday, December 13, 2013 1:06 PM *To:* mono-devel-list@lists.ximian.com mailto:mono-devel-list@lists.ximian.com *Subject:* Re: [Mono-dev] Installing mono via copy

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread Jonathan Chambers
@lists.ximian.com mailto:mono-devel-list@lists.ximian.com *Subject:* Re: [Mono-dev] Installing mono via copy - set a custom prefix (and other stuff) during configure That's the problem. It tries to look for mscorlib at $prefix/lib/mono

Re: [Mono-dev] Installing mono via copy

2013-12-13 Thread John Cronin
I have not tried this with mono, but the typical way for creating packages to be installed on another system is: ./configure --prefix=/usr(or wherever it should end up on the target system) make DESTDIR=/home/me/other-system-root make install and then package up the contents of