[BACK]Return to bsd.port.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/bsd.port.mk between version 1.37 and 1.38

version 1.37, 1998/07/13 03:11:14 version 1.38, 1998/07/17 04:10:20
Line 850 
Line 850 
 IGNORE= "is marked as broken: ${BROKEN}"  IGNORE= "is marked as broken: ${BROKEN}"
 .elif defined(ONLY_FOR_ARCHS)  .elif defined(ONLY_FOR_ARCHS)
 .for __ARCH in ${ONLY_FOR_ARCHS}  .for __ARCH in ${ONLY_FOR_ARCHS}
 .if ${MACHINE} == "${__ARCH}"  .if ( ${MACHINE} == "${__ARCH}" || ${MACHINE_ARCH} == "${__ARCH}" )
 __ARCH_OK=      1  __ARCH_OK=      1
 .endif  .endif
 .endfor  .endfor
 .if !defined(__ARCH_OK)  .if !defined(__ARCH_OK)
   .if ( ${MACHINE} != ${MACHINE_ARCH} )
   IGNORE= "is only for ${ONLY_FOR_ARCHS}, not ${MACHINE} \(${MACHINE_ARCH}\)"
   .else
 IGNORE= "is only for ${ONLY_FOR_ARCHS}, not ${MACHINE}"  IGNORE= "is only for ${ONLY_FOR_ARCHS}, not ${MACHINE}"
   .endif
 .endif  .endif
 .elif defined(COMES_WITH)  .elif defined(COMES_WITH)
 .if ( ${OPSYS_VER} >= ${COMES_WITH} )  .if ( ${OPSYS_VER} >= ${COMES_WITH} )

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38