diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-08-28 15:03:11 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-08-28 15:03:11 +0000 |
commit | 02bb2a078e660547225bc1483d9f7c6905f38360 (patch) | |
tree | 6f62d65d97c2f4f6ca7d2240978557bd1c5e084e /lib/Makefile | |
parent | a5c8d0424be1b289a1d47240266c6ad9ff009f58 (diff) | |
download | FreeBSD-src-02bb2a078e660547225bc1483d9f7c6905f38360.zip FreeBSD-src-02bb2a078e660547225bc1483d9f7c6905f38360.tar.gz |
Repair some build breakage introduced in r211725 and garbage collect some
code made obsolete in the same commit.
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 53248e3..75de092 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 |