diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-29 12:11:48 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-29 12:11:48 +0000 |
commit | 5e59a1d56c263fb8dbb1110c6c80d3918f125dbf (patch) | |
tree | b0aabc41439090b1f7ebfe251a810f9a4e24338b /app | |
parent | dc488bb9bf09c9204e9bd9b609f5d0d655a16a9f (diff) |
DESTDIR support
Diffstat (limited to 'app')
-rw-r--r-- | app/xdm/Makefile.bsd-wrapper | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/xdm/Makefile.bsd-wrapper b/app/xdm/Makefile.bsd-wrapper index f3f3f9be5..637572d7b 100644 --- a/app/xdm/Makefile.bsd-wrapper +++ b/app/xdm/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2006/11/28 20:13:42 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.5 2006/11/29 12:11:47 matthieu Exp $ PIXMAPDIR=/etc/X11/xdm/pixmaps @@ -10,9 +10,9 @@ CONFIGURE_ARGS= --enable-privsep \ --with-color-pixmap=OpenBSD_15bpp.xpm extra-install: - $(INSTALL) -c ${.CURDIR}/config/OpenBSD_1bpp.xpm $(PIXMAPDIR) - $(INSTALL) -c ${.CURDIR}/config/OpenBSD_4bpp.xpm $(PIXMAPDIR) - $(INSTALL) -c ${.CURDIR}/config/OpenBSD_8bpp.xpm $(PIXMAPDIR) - $(INSTALL) -c ${.CURDIR}/config/OpenBSD_15bpp.xpm $(PIXMAPDIR) + $(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) .include <bsd.xorg.mk> |