*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Wed, 10 Jun 1992 21:23:54 +0000 (21:23 +0000)
committerRichard Stallman <rms@gnu.org>
Wed, 10 Jun 1992 21:23:54 +0000 (21:23 +0000)
From-SVN: r1187

gcc/gcc.c

index 9cf213ee1666afa1da7bf891d2d06fede2111b35..33245fe959e5e86d75739a90aa16c3d738f24000 100644 (file)
--- 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;
     }
 }