This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 2 of 2] Fix typos and adjust some documentation


# HG changeset patch
# User "Frederic Roussel" <fr.frasc@gmail.com>
# Date 1258480882 28800
# Node ID 263103c04678e5b5287fe723c5bbbd0a3bea08cb
# Parent  73cec3ad00f63b2d676f9011f84e69422efcd185
Fix typos and adjust some documentation.

diff -r 73cec3ad00f6 -r 263103c04678 Makefile.in
--- a/Makefile.in	Tue Nov 17 09:54:10 2009 -0800
+++ b/Makefile.in	Tue Nov 17 10:01:22 2009 -0800
@@ -129,7 +129,7 @@
 
 # We create a script fragment that is parseable from inside a Makefile,
 # but also from inside a shell script, hence the reason why we don't
-# use := to set varaibles, although that will incur a (very small)
+# use := to set variables, although that will incur a (very small)
 # penalty from the Makefile that includes it (due to re-evaluation at
 # each call).
 paths.mk:
diff -r 73cec3ad00f6 -r 263103c04678 docs/overview.txt
--- a/docs/overview.txt	Tue Nov 17 09:54:10 2009 -0800
+++ b/docs/overview.txt	Tue Nov 17 10:01:22 2009 -0800
@@ -366,22 +366,22 @@
 
 If you want to stop the build after a step you are debugging, you can pass the
 variable STOP to make:
-  ct-ng STOP=some_step
+  ct-ng build STOP=some_step
 
 Conversely, if you want to restart a build at a specific step you are
 debugging, you can pass the RESTART variable to make:
-  ct-ng RESTART=some_step
+  ct-ng build RESTART=some_step
 
 Alternatively, you can call make with the name of a step to just do that step:
   ct-ng libc_headers
 is equivalent to:
-  ct-ng RESTART=libc_headers STOP=libc_headers
+  ct-ng build RESTART=libc_headers STOP=libc_headers
 
 The shortcuts +step_name and step_name+ allow to respectively stop or restart
 at that step. Thus:
-  ct-ng +libc_headers        and:    ct-ng libc_headers+
+  ct-ng +libc_headers              and:    ct-ng libc_headers+
 are equivalent to:
-  ct-ng STOP=libc_headers    and:    ct-ng RESTART=libc_headers
+  ct-ng build STOP=libc_headers    and:    ct-ng build RESTART=libc_headers
 
 To obtain the list of acceptable steps, please call:
   ct-ng list-steps

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]