diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-08-12 11:48:23 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-08-12 11:48:23 +0000 |
commit | 4de531b37b6b8d620bb8d55ff99161d826304a2f (patch) | |
tree | 8b393d94ac478c2f99359607c90f8ba708135564 /include | |
parent | 158b640d2e0cb66dd974b4e7177e74c8921a1918 (diff) |
Make sure we don't install the private radeondrm(4) headers, by leaving out
headers from any subdirectory of dev/pci/drm. If we ever add more drm(4)
drivers any headers needed by userland should end up in dev/pci/drm.
ok mpi@, miod@
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile index ffd0ea377db..1731b167654 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.173 2013/08/10 14:38:26 ajacoutot Exp $ +# $OpenBSD: Makefile,v 1.174 2013/08/12 11:48:22 kettenis Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -140,7 +140,7 @@ copies: cd ../sys; \ pax -rw -pa -L \ `find ${LDIRS} -follow -type f -name '*.h' '!' \ - '(' -path 'dev/microcode/*' -or -path 'dev/pci/drm/i915/*' ')' \ + '(' -path 'dev/microcode/*' -or -path 'dev/pci/drm/*/*' ')' \ -print` ${DESTDIR}/usr/include cd ${DESTDIR}/usr/include && rm -rf ${MACHINE} ${MACHINE_CPU} machine ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ |