diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-03-31 16:41:12 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-03-31 16:41:12 +0000 |
commit | faaecd05ebb497ceaba4c9610e66aea654ef491b (patch) | |
tree | c646c848358626d6d09eee3e3afa247a6eb9ff5a /font | |
parent | d111d66f3859509ea106b01c155e67adfa67d2fc (diff) |
use INSTALL_DATA
Diffstat (limited to 'font')
-rw-r--r-- | font/bitstream-vera-ttf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/font/bitstream-vera-ttf/Makefile b/font/bitstream-vera-ttf/Makefile index 253bb8a68..9569ff4cc 100644 --- a/font/bitstream-vera-ttf/Makefile +++ b/font/bitstream-vera-ttf/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2006/11/26 18:03:16 matthieu Exp $ +# $OpenBSD: Makefile,v 1.2 2007/03/31 16:41:11 matthieu Exp $ FONT_FILES= \ Vera.ttf \ @@ -24,8 +24,8 @@ cleandir: install: @for f in ${FONT_FILES}; do \ - echo "${INSTALL} -c ${.CURDIR}/$$f ${DESTDIR}${fontdir}" ; \ - ${INSTALL} -c ${.CURDIR}/$$f ${DESTDIR}${fontdir} ; \ + echo "${INSTALL_DATA} -c ${.CURDIR}/$$f ${DESTDIR}${fontdir}" ; \ + ${INSTALL_DATA} -c ${.CURDIR}/$$f ${DESTDIR}${fontdir} ; \ done @rm -f ${DESTDIR}${fontdir}/fonts.scale mkfontscale ${DESTDIR}${fontdir} |