diff options
author | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2010-08-28 15:03:11 +0000 |
---|---|---|
committer | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2010-08-28 15:03:11 +0000 |
commit | b12277d1d4e4c21e5d7c96841948fd0c802ecd1b (patch) | |
tree | 6f62d65d97c2f4f6ca7d2240978557bd1c5e084e /lib/Makefile | |
parent | 8d87b396f88f65cb394afe718aa1b4ecc4ebddeb (diff) | |
download | src-test2-b12277d1d4e4c21e5d7c96841948fd0c802ecd1b.tar.gz src-test2-b12277d1d4e4c21e5d7c96841948fd0c802ecd1b.zip |
Notes
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 53248e31659a..75de0925f42c 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -114,8 +114,8 @@ SUBDIR= ${SUBDIR_ORDERED} \ .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf) _csu=csu/${MACHINE_ARCH}-elf -.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}-elf) -_csu=csu/${MACHINE_CPUARCH}-elf +.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}) +_csu=csu/${MACHINE_ARCH} .elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile) _csu=csu/${MACHINE_CPUARCH} .else |