[BACK]Return to make.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/make.1 between version 1.63 and 1.64

version 1.63, 2004/04/21 13:17:49 version 1.64, 2005/01/15 20:42:49
Line 1338 
Line 1338 
 Currently, the only form that works is  Currently, the only form that works is
 .Ql .if ${VAR} op something \.  .Ql .if ${VAR} op something \.
 For instance, tests should be written as  For instance, tests should be written as
 .Ql .if ${VAR} = "string" ,  .Ql .if ${VAR} == "string" ,
 not the other way around, which doesn't work.  not the other way around, which doesn't work.
 .Pp  .Pp
 For loops are expanded before tests, so a fragment such as:  For loops are expanded before tests, so a fragment such as:
 .Bd -literal -offset indent  .Bd -literal -offset indent
 \&.for TMACHINE in ${SHARED_ARCHS}  \&.for TMACHINE in ${SHARED_ARCHS}
 \&.if ${TMACHINE} = ${MACHINE}  \&.if ${TMACHINE} == ${MACHINE}
      ...       ...
 \&.endif  \&.endif
 \&.endfor  \&.endfor

Legend:
Removed from v.1.63  
changed lines
  Added in v.1.64