Index: src/machdep.c
===================================================================
RCS file: /home/cvs/root/hugs98/src/machdep.c,v
retrieving revision 1.137
diff -u -r1.137 machdep.c
--- src/machdep.c	30 Jan 2006 14:49:25 -0000	1.137
+++ src/machdep.c	26 Apr 2006 17:41:28 -0000
@@ -2354,11 +2354,6 @@
     insertChar('/');
     insert("include\"");
 
-    /* the file to compile */
-    insert(" \"");
-    insert(mkFFIFilename(i));
-    insert("\"");
-
     /* the output file */
     insert(" -o \"");
     insert(mkFFIFilename2(i));
@@ -2370,6 +2365,11 @@
         insert(flags);
     }
 
+    /* the file to compile */
+    insert(" \"");
+    insert(mkFFIFilename(i));
+    insert("\"");
+
 #if 0
     printf("Executing '%s'\n",buffer);
 #endif






