Oops, fix userland _CPUCFLAGS. Move adding of _CPUCFLAGS to bottom of

file after end of empty CPUTYPE else clause.
This commit is contained in:
John Baldwin 2002-09-18 20:48:54 +00:00
parent eb28bc3e98
commit f41fb58cd1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103561

View File

@ -94,12 +94,6 @@ _CPUCFLAGS = -mcpu=ev4
. endif
. endif
# NB: COPTFLAGS is handled in /usr/src/sys/conf/Makefile.<arch>
.if !defined(NO_CPU_CFLAGS)
CFLAGS += ${_CPUCFLAGS}
.endif
# Set up the list of CPU features based on the CPU type. This is an
# unordered list to make it easy for client makefiles to test for the
# presence of a CPU feature.
@ -162,3 +156,9 @@ MACHINE_CPU = itanium
. endif
.endif
.endif
# NB: COPTFLAGS is handled in /usr/src/sys/conf/Makefile.<arch>
.if !defined(NO_CPU_CFLAGS)
CFLAGS += ${_CPUCFLAGS}
.endif