summaryrefslogtreecommitdiff
path: root/app/xdm/Makefile.bsd-wrapper
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2007-05-16 19:59:16 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2007-05-16 19:59:16 +0000
commitf96446d6ad6d5953077efeacf93ca592dc7358cf (patch)
tree34b7f99023ceb77540acf3beabb3171d832b0e1a /app/xdm/Makefile.bsd-wrapper
parentafeafbaf28d69b7bcb983ab0c11f930c66905ae2 (diff)
use ${INSTALL_DATA} to install pixmaps. From Tim van der Molen. Thanks.
Diffstat (limited to 'app/xdm/Makefile.bsd-wrapper')
-rw-r--r--app/xdm/Makefile.bsd-wrapper10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/xdm/Makefile.bsd-wrapper b/app/xdm/Makefile.bsd-wrapper
index f84f202e2..25d47c905 100644
--- a/app/xdm/Makefile.bsd-wrapper
+++ b/app/xdm/Makefile.bsd-wrapper
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.bsd-wrapper,v 1.11 2007/04/07 17:58:02 matthieu Exp $
+# $OpenBSD: Makefile.bsd-wrapper,v 1.12 2007/05/16 19:59:15 matthieu Exp $
PIXMAPDIR=/etc/X11/xdm/pixmaps
@@ -19,9 +19,9 @@ CONFIGURE_ARGS= --enable-privsep \
--with-color-pixmap=OpenBSD_15bpp.xpm
afterinstall:
- $(INSTALL) -c ${.CURDIR}/config/OpenBSD_1bpp.xpm $(DESTDIR)$(PIXMAPDIR)
- $(INSTALL) -c ${.CURDIR}/config/OpenBSD_4bpp.xpm $(DESTDIR)$(PIXMAPDIR)
- $(INSTALL) -c ${.CURDIR}/config/OpenBSD_8bpp.xpm $(DESTDIR)$(PIXMAPDIR)
- $(INSTALL) -c ${.CURDIR}/config/OpenBSD_15bpp.xpm $(DESTDIR)$(PIXMAPDIR)
+ $(INSTALL_DATA) ${.CURDIR}/config/OpenBSD_1bpp.xpm $(DESTDIR)$(PIXMAPDIR)
+ $(INSTALL_DATA) ${.CURDIR}/config/OpenBSD_4bpp.xpm $(DESTDIR)$(PIXMAPDIR)
+ $(INSTALL_DATA) ${.CURDIR}/config/OpenBSD_8bpp.xpm $(DESTDIR)$(PIXMAPDIR)
+ $(INSTALL_DATA) ${.CURDIR}/config/OpenBSD_15bpp.xpm $(DESTDIR)$(PIXMAPDIR)
.include <bsd.xorg.mk>