diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-30 02:03:50 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-30 02:03:50 +0000 |
commit | 9602ac750dc47fa055e2f4afdf856f650f5fa717 (patch) | |
tree | aa7457a20f73abafec751124f5d54f15e0c1f066 /sys/arch/sparc/stand/libsa/Makefile | |
parent | eba90c397238078d4145046f9f6056ced60b52a2 (diff) |
Now that errno.h and sys/errno.h are separate header files there is no
need to use the -Derrno=errno workaround added when __errno() was
introduced. OK deraadt@
Diffstat (limited to 'sys/arch/sparc/stand/libsa/Makefile')
-rw-r--r-- | sys/arch/sparc/stand/libsa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/stand/libsa/Makefile b/sys/arch/sparc/stand/libsa/Makefile index cc9a3519bd3..88714bf37de 100644 --- a/sys/arch/sparc/stand/libsa/Makefile +++ b/sys/arch/sparc/stand/libsa/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.3 2004/07/13 21:03:39 marc Exp $ +# $OpenBSD: Makefile,v 1.4 2005/12/30 02:03:49 millert Exp $ LIB= sa .PATH: ${.CURDIR}/../../../../lib/libsa -CFLAGS= -O2 -D__INTERNAL_LIBSA_CREAD -Derrno=errno \ +CFLAGS= -O2 -D__INTERNAL_LIBSA_CREAD \ -I${.CURDIR} -I${.CURDIR}/../include -I${.CURDIR}/../.. \ -I${.CURDIR}/../../.. -I${.CURDIR}/../../../.. \ -I${.CURDIR}/../../../../lib/libsa |