diff options
author | Richard Stallman <rms@gnu.org> | 1992-06-10 21:23:54 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-06-10 21:23:54 +0000 |
commit | 00f7e60311964a91544f5e8f4719fd93df49759a (patch) | |
tree | 66a6f69ea94a4f52565c887a747b9ac8e8128196 | |
parent | edbe40ea9aaf851605669701bb618d1c8e406ff4 (diff) | |
download | gcc-00f7e60311964a91544f5e8f4719fd93df49759a.zip gcc-00f7e60311964a91544f5e8f4719fd93df49759a.tar.gz gcc-00f7e60311964a91544f5e8f4719fd93df49759a.tar.bz2 |
*** empty log message ***
From-SVN: r1187
-rw-r--r-- | gcc/gcc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } } |