diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-04-08 04:53:58 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-04-08 04:53:58 +0000 |
commit | 6ba5ae105a4cad52a2c405a768352c90df1ac6ea (patch) | |
tree | 5780afd4eac47d8ef826b73a21a862bb28028f4d /include/Makefile | |
parent | 6cca449015100ee2f883ea5f56e8e44a5799ca86 (diff) |
install link.h and dlfcn.h from sys/arch/sparc64/include.
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Makefile b/include/Makefile index 6c724686a3f..2db6e955f12 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.101 2002/02/18 22:16:37 mickey Exp $ +# $OpenBSD: Makefile,v 1.102 2002/04/08 04:53:57 fgsch Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -20,7 +20,7 @@ FILES= a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h cast.h cpio.h \ string.h strings.h struct.h sysexits.h tar.h time.h ttyent.h tzfile.h \ unistd.h utime.h utmp.h vis.h -.if (${MACHINE_ARCH} != "powerpc") +.if (${MACHINE_ARCH} != "powerpc") && (${MACHINE_ARCH} != "sparc64") FILES+= dlfcn.h link.h .endif @@ -31,7 +31,7 @@ FILES+= ieeefp.h MFILES= float.h frame.h stdarg.h varargs.h LFILES= errno.h fcntl.h syslog.h termios.h -.if (${MACHINE_ARCH} == "powerpc") +.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "sparc64") MFILES+= link.h dlfcn.h .endif |