diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2003-07-22 17:15:14 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2003-07-22 17:15:14 +0000 |
commit | 25685fa91ebb7b712245211fb175b55b6db8427a (patch) | |
tree | 2829adc2f4330bdea78689854bd0a79a62579947 /lib | |
parent | bf8f55c721dcdbe06555f5a752d3989f680d9242 (diff) |
- use :L variable modifier with ELF_TOOLCHAIN variable
- change 2 instances of the check from != "yes" to == "no"
ok deraadt@
Diffstat (limited to 'lib')
-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}. |