From mint-bounce@lists.fishpool.fi Thu Oct 2 19:00:58 2008 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :organization:user-agent:mime-version:to:subject:content-type; bh=ofEOPY4rJs1p8ducvREdyVTrupnUFY4EdtN/RwajwGs=; b=wlmAi0MjXgQEel+qxWCKIv9VsXNIUhWb+vPvtKTTYkoUirVPG8J2aDKis1cnLDuHXM MCXZyTQVfsFx5Z0DS7KDDoF8eGd/1XQI3+M1zT1Of4k3tghW7aoDmTrilZnoMPMiEj2p bXlaYq7f1GQ10IT2r6VTp/hDc5FeK7s7HRI0I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:organization:user-agent:mime-version:to :subject:content-type; b=i9Jxqr208nx+mdLIXcbBbvYdyD7jksQUFbBZzm3NpQsQknOyYscorKYr7SxYxz+kV5 +/mkAKInRI/3jgBh/SX2ceMKNP2k4iixr+QCfp6PNSn5va5ZLlY+5Zo6xxV1arh0ctfd SkPbmq8zAXs7QzBtRuJZKqk6FZ/IGcWl3pJLo= Message-ID: <48E5505C.2080907@gmail.com> Date: Fri, 03 Oct 2008 00:51:08 +0200 From: Miro Kropacek Organization: Mystic Bytes User-Agent: Thunderbird 2.0.0.17 (X11/20080925) MIME-Version: 1.0 To: mint Subject: [MiNT] MiNTLib sh-compliant includepath Content-Type: multipart/mixed; boundary="------------080805020903040702080707" X-ecartis-version: Ecartis v1.0.0 Sender: mint-bounce@lists.fishpool.fi Errors-to: mint-bounce@lists.fishpool.fi X-original-sender: miro.kropacek@gmail.com Precedence: bulk List-help: List-unsubscribe: List-Id: X-List-ID: List-subscribe: List-owner: List-post: This is a multi-part message in MIME format. --------------080805020903040702080707 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, there's patch following Andreas' hint, i.e. not to use bash specific $(< ...) but $(cat ...) instead. Tested and works. Btw I managed to compile 4.3.2 gcc/g++ cross compiler on my linux laptop, it's a little bit tricky but nothing serious. In case you're interested I can post some howto. And if I'll be lucky, I will compile native (using this cross compiler) gcc 4.3.2 tomorrow. Btw #2: Vincent, there's no need for libm (pml) anymore. By coincidence I forgot to compile it and voila, gcc/g++ is compiled anyway. I think libgmp replaces it. -- MiKRO / Mystic Bytes http://mikro.atari.org --------------080805020903040702080707 Content-Type: text/x-diff; name="rules.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rules.patch" Index: buildrules =================================================================== RCS file: /mint/mintlib/buildrules,v retrieving revision 1.16 diff -r1.16 buildrules 36c36 < -I$(top_srcdir)/mintlib -I$(top_srcdir)/stdlib -I$$(<$(top_srcdir)/includepath) --- > -I$(top_srcdir)/mintlib -I$(top_srcdir)/stdlib -I$$(cat $(top_srcdir)/includepath) Index: checkrules =================================================================== RCS file: /mint/mintlib/checkrules,v retrieving revision 1.4 diff -r1.4 checkrules 33c33 < INCLUDES = -nostdinc -I$$(<$(top_srcdir)/includepath) \ --- > INCLUDES = -nostdinc -I$$(cat $(top_srcdir)/includepath) \ --------------080805020903040702080707--