diff --git a/Sming/Components/rboot/component.mk b/Sming/Components/rboot/component.mk index 7a88aac668..a11795b443 100644 --- a/Sming/Components/rboot/component.mk +++ b/Sming/Components/rboot/component.mk @@ -68,7 +68,7 @@ endif # determine number of roms to generate ifneq ($(RBOOT_ROM1_ADDR),) -RBOOT_TWO_ROMS := $(shell $(AWK) 'BEGIN { print (ARGV[1] % (1024*1024)) != (ARGV[2] % (1024*1024))}' $(RBOOT_ROM0_ADDR) $(RBOOT_ROM1_ADDR)) +RBOOT_TWO_ROMS := $(shell $(AWK) 'BEGIN { print ((ARGV[1] % (1024*1024)) != (ARGV[2] % (1024*1024)))}' $(RBOOT_ROM0_ADDR) $(RBOOT_ROM1_ADDR)) else RBOOT_TWO_ROMS := 0 endif