diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-05-08 14:15:30 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-05-08 14:15:30 +0000 |
commit | 536829548a41a5098f51fcf7bbb7a36acbd0153d (patch) | |
tree | e31d26441f843a778fbab2f2cb5912e2bafd7b19 /lib/libGLw | |
parent | ca9af72c4f2136d12227a7761f8963ec23ecbd64 (diff) |
use INSTALL_DATA in BSD Makefiles. ok oga@
Diffstat (limited to 'lib/libGLw')
-rw-r--r-- | lib/libGLw/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libGLw/Makefile b/lib/libGLw/Makefile index 756c97d34..f785ed840 100644 --- a/lib/libGLw/Makefile +++ b/lib/libGLw/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2009/05/25 18:40:11 matthieu Exp $ +# $OpenBSD: Makefile,v 1.12 2010/05/08 14:15:29 matthieu Exp $ DEBUG?= @@ -28,8 +28,7 @@ obj: _xenocara_obj includes: cd ${.CURDIR}; for i in ${INCS}; do \ j="cmp -s $$i ${DESTDIR}${INCSDIR}/GL/$$i || \ - ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ - $$i ${DESTDIR}${INCSDIR}/GL"; \ + ${INSTALL_DATA} $$i ${DESTDIR}${INCSDIR}/GL"; \ echo "\tinstalling $$i"; \ eval "$$j"; \ done |