2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00

be nicer to gcc-3.4.6

This commit is contained in:
bebbo
2017-10-18 22:14:31 +02:00
parent 0bdd6b7840
commit 749d17913a
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,11 @@
--- gcc-3.4.6/gcc/version.c 2006-03-06 04:49:27.000000000 +0100
+++ gcc-3.4.6-patched/gcc/version.c 2017-10-18 22:09:49.506277500 +0200
@@ -5,7 +5,7 @@
please modify this string to indicate that, e.g. by putting your
organization's name in parentheses at the end of the string. */
-const char version_string[] = "3.4.6";
+const char version_string[] = "3.4.6b";
/* This is the location of the online document giving instructions for
reporting bugs. If you distribute a modified version of GCC,

View File

@ -126,7 +126,10 @@ def install_tools():
def install_libamiga():
info('installing libamiga')
copytree('{sources}/{libamiga}/lib', '{prefix}/{target}/libnix/lib')
if fill_in('{gcc}') == 'gcc-3.4.6':
copytree('{sources}/{libamiga}/lib', '{prefix}/{target}/lib')
else:
copytree('{sources}/{libamiga}/lib', '{prefix}/{target}/libnix/lib')
@recipe('{clib2}-install')