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 /share/mk | |
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 'share/mk')
-rw-r--r-- | share/mk/bsd.xorg.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/share/mk/bsd.xorg.mk b/share/mk/bsd.xorg.mk index b2938b5f8..8a008082f 100644 --- a/share/mk/bsd.xorg.mk +++ b/share/mk/bsd.xorg.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xorg.mk,v 1.17 2007/03/30 07:11:06 espie Exp $ -*- makefile -*- +# $OpenBSD: bsd.xorg.mk,v 1.18 2007/03/30 17:24:12 aanriot Exp $ -*- makefile -*- # # Copyright © 2006 Matthieu Herrb # @@ -36,6 +36,9 @@ MANDIR= ${X11BASE}/man/cat PKG_CONFIG_LIBDIR= ${X11BASE}/lib/pkgconfig +# A few aliases for *-install targets +INSTALL_DATA = ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 644 + # Autoconf cache _cache= --cache-file=${XENOCARA_OBJDIR}/xorg-config.cache.${MACHINE} |