summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-08-13 19:09:11 (GMT)
committerSteven Knight <knight@baldmt.com>2005-08-13 19:09:11 (GMT)
commit1a3785fc03ffde5ea3102d7683dcabe4b6fd47c0 (patch)
treedeb438a6f6be998a4f70d0af8cdb937fc2788e51 /doc
parente7bc4330bd90e5250174c41023f1a2b671479857 (diff)
downloadSCons-1a3785fc03ffde5ea3102d7683dcabe4b6fd47c0.zip
SCons-1a3785fc03ffde5ea3102d7683dcabe4b6fd47c0.tar.gz
SCons-1a3785fc03ffde5ea3102d7683dcabe4b6fd47c0.tar.bz2
Add a Dirs() function that can be used in hBcexpansions. (Stanislav Baranov)
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.130
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index a1fc076..96bd467 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -4882,19 +4882,15 @@ This may or may not be set,
depending on the specific C compiler being used.
.IP _concat
-A function used to produce variables like $_CPPINCFLAGS.
-It takes four to seven arguments:
-a prefix to concatenate onto each element;
-a list of elements;
-a suffix to concatenate onto each element;
-an environment for variable interpolation;
-an optional function that will be
-called to transform the list before concatenation;
-a target or list of targets;
-and a source or list of sources.
+A function used to produce variables like $_CPPINCFLAGS. It takes
+four or five
+arguments: a prefix to concatenate onto each element, a list of
+elements, a suffix to concatenate onto each element, an environment
+for variable interpolation, and an optional function that will be
+called to transform the list before concatenation.
.ES
-env['_CPPINCFLAGS'] = '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)',
+env['_CPPINCFLAGS'] = '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs)} $)',
.EE
.IP CPPDEFINES
@@ -5151,8 +5147,12 @@ This may or may not be set,
depending on the specific C++ compiler being used.
.IP Dir
-A function that converts a file name into a Dir instance relative to the
-target being built.
+A function that converts a string
+into a Dir instance relative to the target being built.
+
+.IP Dirs
+A function that converts a list of strings
+into a list of Dir instances relative to the target being built.
.IP DSUFFIXES
The list of suffixes of files that will be scanned
@@ -5723,7 +5723,7 @@ The default list is:
.EE
.IP File
-A function that converts a file name into a File instance relative to the
+A function that converts a string into a File instance relative to the
target being built.
.IP FRAMEWORKPATH
@@ -6756,7 +6756,7 @@ The string displayed when registering a newly-built DLL file.
If this is not set, then $REGSVRCOM (the command line) is displayed.
.IP RDirs
-A function that converts a file name into a list of Dir instances by
+A function that converts a string into a list of Dir instances by
searching the repositories.
.IP RMIC