diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-15 01:23:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-15 01:23:07 +0000 |
commit | ac692e4f6a15080797d9667f433abf479820151d (patch) | |
tree | 47623d5a0030192f0c9f04761b83e507d4f5ec1d /sys-devel/gcc/files/3.4.1 | |
parent | touch die messages and debug output (diff) | |
download | gentoo-2-ac692e4f6a15080797d9667f433abf479820151d.tar.gz gentoo-2-ac692e4f6a15080797d9667f433abf479820151d.tar.bz2 gentoo-2-ac692e4f6a15080797d9667f433abf479820151d.zip |
get rid of the broken spec patch for sure and clean up CTARGET usage
(Portage version: 2.0.51-r12)
Diffstat (limited to 'sys-devel/gcc/files/3.4.1')
-rw-r--r-- | sys-devel/gcc/files/3.4.1/gcc-3.4.1-spec-env.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/sys-devel/gcc/files/3.4.1/gcc-3.4.1-spec-env.patch b/sys-devel/gcc/files/3.4.1/gcc-3.4.1-spec-env.patch deleted file mode 100644 index bd1283ce1ca0..000000000000 --- a/sys-devel/gcc/files/3.4.1/gcc-3.4.1-spec-env.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- gcc-3.4.1.orig/gcc/gcc.c 2004-09-19 19:56:59.264425944 +0000 -+++ gcc-3.4.1/gcc/gcc.c 2004-09-19 20:01:19.101924640 +0000 -@@ -6421,6 +6421,20 @@ - - /* Process any user specified specs in the order given on the command - line. */ -+ -+ GET_ENVIRONMENT (specs_file, "GCC_SPECS"); -+ if (specs_file) -+ { -+ struct user_specs *user = xmalloc (sizeof (struct user_specs)); -+ -+ user->next = (struct user_specs *) 0; -+ user->filename = specs_file; -+ if (user_specs_tail) -+ user_specs_tail->next = user; -+ else -+ user_specs_head = user; -+ user_specs_tail = user; -+ } - for (uptr = user_specs_head; uptr; uptr = uptr->next) - { - char *filename = find_a_file (&startfile_prefixes, uptr->filename, |