diff options
author | bde <bde@FreeBSD.org> | 1995-08-06 12:24:38 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-08-06 12:24:38 +0000 |
commit | 6579f34131bcc90bb095184a1ab0c491ba0b59b5 (patch) | |
tree | 654fdd1b68d3f3b66fa5852885ab296a298270bf /lib/libmd | |
parent | d37f4ba3bc52c05290e132d2ec3d080bdb31c9fd (diff) | |
download | FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.zip FreeBSD-src-6579f34131bcc90bb095184a1ab0c491ba0b59b5.tar.gz |
Change `install' to `${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
Previously I missed dozens of Makefiles that skip the install after
using `cmp -s' to decide that the install isn't necessary.
Diffstat (limited to 'lib/libmd')
-rw-r--r-- | lib/libmd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libmd/Makefile b/lib/libmd/Makefile index d543dd5..ab70c11 100644 --- a/lib/libmd/Makefile +++ b/lib/libmd/Makefile @@ -88,13 +88,13 @@ beforedepend: md2hl.c md4hl.c md5hl.c beforeinstall: -cd ${.CURDIR}; cmp -s md2.h ${DESTDIR}/usr/include/md2.h || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 md2.h \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 md2.h \ ${DESTDIR}/usr/include -cd ${.CURDIR}; cmp -s md4.h ${DESTDIR}/usr/include/md4.h || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 md4.h \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 md4.h \ ${DESTDIR}/usr/include -cd ${.CURDIR}; cmp -s md5.h ${DESTDIR}/usr/include/md5.h || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 md5.h \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 md5.h \ ${DESTDIR}/usr/include .include <bsd.lib.mk> |