diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-06-02 22:03:13 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-06-02 22:03:13 +0000 |
commit | 080a430c818cf2db7bea5174e9fde6d2c63d5f85 (patch) | |
tree | ebb7e43a055878711abc3553caf55e6e112d4366 /lib | |
parent | 2238bb6ff1d57e7f8cc9b37618012a41353cc9bc (diff) |
somehow missed spinlock.h here. broke bmercer's build.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/include/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/include/Makefile.inc b/lib/libpthread/include/Makefile.inc index 4da28f90ddb..b8fd2151c2e 100644 --- a/lib/libpthread/include/Makefile.inc +++ b/lib/libpthread/include/Makefile.inc @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.5 2003/01/20 18:12:11 marc Exp $ +# $OpenBSD: Makefile.inc,v 1.6 2013/06/02 22:03:12 tedu Exp $ includes: @cd ${SRCDIR}/include; \ - for h in pthread.h pthread_np.h sched.h semaphore.h spinlock.h; do \ + for h in pthread.h pthread_np.h sched.h semaphore.h; do \ cmp -s $$h ${DESTDIR}/usr/include/$$h > /dev/null 2>&1 || \ (echo ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ -m 444 $$h ${DESTDIR}/usr/include; \ |