diff options
author | Greg Noel <GregNoel@tigris.org> | 2008-09-17 02:18:03 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2008-09-17 02:18:03 (GMT) |
commit | eb0d57f5a2a0901b9dc30b34379683e8a084c00a (patch) | |
tree | c73f8e75a1d7fd21a62e2f52e9eafe248b9df347 | |
parent | 7dc5ca14d9985e6661d4504dc29b937698858413 (diff) | |
download | SCons-eb0d57f5a2a0901b9dc30b34379683e8a084c00a.zip SCons-eb0d57f5a2a0901b9dc30b34379683e8a084c00a.tar.gz SCons-eb0d57f5a2a0901b9dc30b34379683e8a084c00a.tar.bz2 |
Fix doc typo reported in the mailing list and another small glitch
-rw-r--r-- | doc/man/scons.1 | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 4364d71..eaf18e6 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -98,17 +98,20 @@ Before reading the .I SConstruct file, .B scons -adds looks for a dir named +looks for a directory named .I site_scons -in the dir containing the +in the directory containing the .I SConstruct -file; it adds that +file; if it exists, .I site_scons -to sys.path, reads the file +is added to sys.path, +the file .IR site_scons/site_init.py , -and adds the directory +is evaluated if it exists, +and the directory .I site_scons/site_tools -to the default toolpath, if those exist. See the +is added to the default toolpath if it exist. +See the .I --no-site-dir and .I --site-dir @@ -1949,7 +1952,7 @@ env = Program('hello', 'hello.c', parse_flags = '-Iinclude -DEBUG -lm') This example adds 'include' to .BR CPPPATH , -\'EBUG' to +\&'EBUG' to .BR CPPDEFINES , and 'm' to .BR LIBS . |