diff options
author | Alexandre Anriot <aanriot@cvs.openbsd.org> | 2007-03-30 17:24:14 +0000 |
---|---|---|
committer | Alexandre Anriot <aanriot@cvs.openbsd.org> | 2007-03-30 17:24:14 +0000 |
commit | d111d66f3859509ea106b01c155e67adfa67d2fc (patch) | |
tree | 97140cbc414dbe61e64a88ddc0729b548a804b97 /app/xsystrace/pixmaps/Makefile | |
parent | 6dcaca2663d59dcdf7aa99a6d6ab9d23eefd688b (diff) |
- add an INSTALL_DATA target in bsd.xorg.mk (inspired by bsd.port.mk).
- start using it in fvwm, ssh-askpass and xsystrace (more to come).
ok matthieu@
Diffstat (limited to 'app/xsystrace/pixmaps/Makefile')
-rw-r--r-- | app/xsystrace/pixmaps/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/xsystrace/pixmaps/Makefile b/app/xsystrace/pixmaps/Makefile index ea7caa92c..f503b37df 100644 --- a/app/xsystrace/pixmaps/Makefile +++ b/app/xsystrace/pixmaps/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2006/11/27 20:19:57 matthieu Exp $ +# $OpenBSD: Makefile,v 1.2 2007/03/30 17:24:13 aanriot Exp $ .include <bsd.own.mk> PIXMAPS= deny-always.xpm deny.xpm logo.xpm permit-always.xpm \ @@ -6,9 +6,9 @@ PIXMAPS= deny-always.xpm deny.xpm logo.xpm permit-always.xpm \ install: @for f in ${PIXMAPS}; do \ - echo "${INSTALL} ${INSTALL_COPY} $$f \ + echo "${INSTALL_DATA} $$f \ ${DESTDIR}${INCSDIR}/X11/pixmaps" ; \ - ${INSTALL} ${INSTALL_COPY} ${.CURDIR}/$$f \ + ${INSTALL_DATA} ${.CURDIR}/$$f \ ${DESTDIR}${INCSDIR}/X11/pixmaps ; \ done |