diff options
author | Bruce Evans <bde@FreeBSD.org> | 1995-07-25 00:37:58 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1995-07-25 00:37:58 +0000 |
commit | 9c0dc173cc77c4480ea66866d12021bb609b5deb (patch) | |
tree | 67449d23a48a9e1b2ffd0a92e0f11275368bb4b0 /share/syscons/fonts/Makefile | |
parent | 6eee579315c654f5d06b165ce593fa686aeafbb3 (diff) |
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
Notes
Notes:
svn path=/head/; revision=9701
Diffstat (limited to 'share/syscons/fonts/Makefile')
-rw-r--r-- | share/syscons/fonts/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/syscons/fonts/Makefile b/share/syscons/fonts/Makefile index 32a90865788f..7eb72b29d0fe 100644 --- a/share/syscons/fonts/Makefile +++ b/share/syscons/fonts/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1995/02/22 21:49:46 roberto Exp $ +# $Id: Makefile,v 1.6 1995/05/30 06:58:14 rgrimes Exp $ FONTS= cp437-8x8.fnt cp437-8x14.fnt cp437-8x16.fnt \ cp437-thin-8x8.fnt cp437-thin-8x16.fnt \ @@ -22,7 +22,7 @@ all clean: install: cd ${.CURDIR}; \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FONTS} \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FONTS} \ ${DESTDIR}${FONTDIR} .include <bsd.prog.mk> |