diff options
author | 2003-07-22 17:15:12 +0000 | |
---|---|---|
committer | 2003-07-22 17:15:12 +0000 | |
commit | 466a01d6b0ce1065c31878329d6e35540883db79 (patch) | |
tree | 45d2554876d68d7e9922c717338d9b6b06dafc69 /lib/libpthread | |
parent | Add missing terminator to long options list. (diff) | |
download | wireguard-openbsd-466a01d6b0ce1065c31878329d6e35540883db79.tar.xz wireguard-openbsd-466a01d6b0ce1065c31878329d6e35540883db79.zip |
- use :L variable modifier with ELF_TOOLCHAIN variable
- change 2 instances of the check from != "yes" to == "no"
ok deraadt@
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/sys/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/sys/Makefile.inc b/lib/libpthread/sys/Makefile.inc index 8594adea8e1..9aad9340db2 100644 --- a/lib/libpthread/sys/Makefile.inc +++ b/lib/libpthread/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.10 2003/01/20 18:12:11 marc Exp $ +# $OpenBSD: Makefile.inc,v 1.11 2003/07/22 17:15:12 brad Exp $ .PATH: ${SRCDIR}/sys ${SRCDIR}/arch/${MACHINE_ARCH} @@ -12,7 +12,7 @@ SRCS+= uthread_machdep_asm.S SRCS+= uthread_machdep.c .endif -.if (${LIB} == "c_r") && (${ELF_TOOLCHAIN} == "no") +.if (${LIB} == "c_r") && (${ELF_TOOLCHAIN:L} == "no") # # All syscalls are renamed as _thread_sys_{syscall}. |