Browse Source

aros: fixed typo/naming mismatch in 5b0669d0, spotted by Alexey Torgashin

Karoly Balogh 2 years ago
parent
commit
f1b071bbba
2 changed files with 4 additions and 4 deletions
  1. 2 2
      rtl/aros/Makefile
  2. 2 2
      rtl/aros/Makefile.fpc

+ 2 - 2
rtl/aros/Makefile

@@ -367,10 +367,10 @@ override FPCOPT+=-Ur
 endif
 OBJPASDIR=$(RTL)/objpas
 ifeq ($(ARCH),i386)
-CPU_UNITS=cpu mmx lineinfo
+CPUUNITS=cpu mmx lineinfo
 endif
 ifeq ($(ARCH),x86_64)
-CPU_UNITS=cpu
+CPUUNITS=cpu
 endif
 ifeq ($(FULL_TARGET),i386-linux)
 override TARGET_UNITS+=$(SYSTEMUNIT) heaptrc uuchar objpas macpas iso7185 extpas buildrtl cpall

+ 2 - 2
rtl/aros/Makefile.fpc

@@ -60,11 +60,11 @@ endif
 OBJPASDIR=$(RTL)/objpas
 
 ifeq ($(ARCH),i386)
-CPU_UNITS=cpu mmx lineinfo
+CPUUNITS=cpu mmx lineinfo
 endif
 
 ifeq ($(ARCH),x86_64)
-CPU_UNITS=cpu
+CPUUNITS=cpu
 endif