Ignore:
Timestamp:
May 9, 2010, 4:15:50 PM (15 years ago)
Author:
bird
Message:

header.kmk: Corrected typo in KBUILD_HOST_CPU and KBUILD_TARGET_CPU checks that ened up allowing CPU to be one of the ARCHes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/header.kmk

    r2356 r2403  
    252252  $(error kBuild: The KBUILD_HOST_CPU value '$(KBUILD_HOST_CPU)' contains spaces/tabs!)
    253253 endif
    254  if1of ($(KBUILD_HOST_CPU), $(KBUILD_OSES) $(BUILD_ARCHES))
     254 if1of ($(KBUILD_HOST_CPU), $(KBUILD_OSES) $(KBUILD_ARCHES))
    255255  $(error kBuild: The KBUILD_HOST_CPU value '$(KBUILD_HOST_CPU)' was found in the OS or architecture keywords!)
    256256 endif
     
    348348  $(error kBuild: The KBUILD_TARGET_CPU value '$(KBUILD_TARGET_CPU)' contains spaces/tabs!)
    349349 endif
    350  if1of ($(KBUILD_TARGET_CPU), $(KBUILD_OSES) $(BUILD_ARCHES))
     350 if1of ($(KBUILD_TARGET_CPU), $(KBUILD_OSES) $(KBUILD_ARCHES))
    351351  $(error kBuild: The KBUILD_TARGET_CPU value was found in the OS or architecture keywords!)
    352352 endif
Note: See TracChangeset for help on using the changeset viewer.