aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-06-10 21:23:54 +0000
committerRichard Stallman <rms@gnu.org>1992-06-10 21:23:54 +0000
commit00f7e60311964a91544f5e8f4719fd93df49759a (patch)
tree66a6f69ea94a4f52565c887a747b9ac8e8128196
parentedbe40ea9aaf851605669701bb618d1c8e406ff4 (diff)
downloadgcc-00f7e60311964a91544f5e8f4719fd93df49759a.zip
gcc-00f7e60311964a91544f5e8f4719fd93df49759a.tar.gz
gcc-00f7e60311964a91544f5e8f4719fd93df49759a.tar.bz2
*** empty log message ***
From-SVN: r1187
-rw-r--r--gcc/gcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 9cf213e..33245fe 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -2057,10 +2057,10 @@ process_command (argc, argv)
temp = (char *) xmalloc (strlen (gcc_exec_prefix) + strlen (spec_version)
+ strlen (spec_machine) + 3);
strcpy (temp, gcc_exec_prefix);
- strcat (temp, spec_version);
- strcat (temp, "/");
strcat (temp, spec_machine);
strcat (temp, "/");
+ strcat (temp, spec_version);
+ strcat (temp, "/");
gcc_exec_prefix = temp;
}
}