Change "triplet" (target triplet) to "tuple". That sounds better!

Document overriding the number of // jobs.
Some small documentation fixes.
This commit is contained in:
Yann E. MORIN"
2007-08-15 16:18:35 +00:00
parent ecab7e451f
commit 09f0dcc66f
7 changed files with 41 additions and 26 deletions

View File

@ -480,12 +480,12 @@ CT_DoConfigSub() {
fi
}
# Compute the target triplet from what is provided by the user
# Usage: CT_DoBuildTargetTriplet
# Compute the target tuple from what is provided by the user
# Usage: CT_DoBuildTargetTuple
# In fact this function takes the environment variables to build the target
# triplet. It is needed both by the normal build sequence, as well as the
# tuple. It is needed both by the normal build sequence, as well as the
# sample saving sequence.
CT_DoBuildTargetTriplet() {
CT_DoBuildTargetTuple() {
case "${CT_ARCH_BE},${CT_ARCH_LE}" in
y,) target_endian_eb=eb; target_endian_el=;;
,y) target_endian_eb=; target_endian_el=el;;