diff options
author | ru <ru@FreeBSD.org> | 2006-04-12 19:52:34 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-04-12 19:52:34 +0000 |
commit | f6f87616ef92c3113d732cd9a7b256998db959a8 (patch) | |
tree | 9928f258046626967353f421bf8160f9ba49cc38 /usr.sbin | |
parent | 6f911199b89f6612e33245e714025380f50b264d (diff) | |
download | FreeBSD-src-f6f87616ef92c3113d732cd9a7b256998db959a8.zip FreeBSD-src-f6f87616ef92c3113d732cd9a7b256998db959a8.tar.gz |
libc_r is no longer provided, and on alpha and sparc64, libthr
is (sym)linked to libpthread. Account for this change and
check for MK_LIBTHR instead of MK_LIBC_R where appropriate.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index b1cf1bc..0b2d93e 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -319,7 +319,7 @@ _boot98cfg= boot98cfg .if ${MACHINE_ARCH} == "alpha" _elf2exe= elf2exe _pnpinfo= pnpinfo -.if ${MK_LIBC_R} != "no" +.if ${MK_LIBTHR} != "no" _pppctl= pppctl .endif .endif @@ -368,7 +368,7 @@ _mount_smbfs= mount_smbfs .if ${MACHINE_ARCH} == "sparc64" _eeprom= eeprom _ofwdump= ofwdump -.if ${MK_LIBC_R} != "no" +.if ${MK_LIBTHR} != "no" _pppctl= pppctl .endif .endif |