Target Directory not parsed in command line fixed
authorlbessard
Thu, 28 May 2009 14:02:35 +0200
changeset 179 a4eb4fd6b0d6
parent 178 1622dc05c6ca
child 180 64334c5a00b1
Target Directory not parsed in command line fixed
main.cc
--- a/main.cc	Tue May 26 18:04:27 2009 +0200
+++ b/main.cc	Thu May 28 14:02:35 2009 +0200
@@ -125,6 +125,9 @@
     case 'I':
       stage1_2_options.includedir = optarg;
       break;
+    case 'T':
+      builddir = optarg;
+      break;
     case ':':       /* -I or -T without operand */
       fprintf(stderr, "Option -%c requires an operand\n", optopt);
       errflg++;