mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Merge from tbemd:
use MACHINE_CPUARCH instead of MACHINE_CPU since the sources for the CSU is based on MACHINE_CPUARCH Reviewed by: arch@ (twice)
This commit is contained in:
parent
4a5faa676e
commit
d587260195
1 changed files with 3 additions and 3 deletions
|
|
@ -1108,10 +1108,10 @@ _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc
|
|||
# all shared libraries for ELF.
|
||||
#
|
||||
_startup_libs= gnu/lib/csu
|
||||
.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
|
||||
_startup_libs+= lib/csu/${MACHINE_ARCH}-elf
|
||||
.if exists(${.CURDIR}/lib/csu/${MACHINE_CPUARCH}-elf)
|
||||
_startup_libs+= lib/csu/${MACHINE_CPUARCH}-elf
|
||||
.else
|
||||
_startup_libs+= lib/csu/${MACHINE_ARCH}
|
||||
_startup_libs+= lib/csu/${MACHINE_CPUARCH}
|
||||
.endif
|
||||
_startup_libs+= gnu/lib/libgcc
|
||||
_startup_libs+= lib/libc
|
||||
|
|
|
|||
Loading…
Reference in a new issue