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 /gnu/lib/libreadline/Makefile | |
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 'gnu/lib/libreadline/Makefile')
-rw-r--r-- | gnu/lib/libreadline/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libreadline/Makefile b/gnu/lib/libreadline/Makefile index 37b3e96..437464a 100644 --- a/gnu/lib/libreadline/Makefile +++ b/gnu/lib/libreadline/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.19 1995/02/15 20:59:13 ache Exp $ +# $Id: Makefile,v 1.20 1995/05/08 08:43:06 ache Exp $ CFLAGS+= -I${.CURDIR} -DVOID_SIGHANDLER -DHAVE_CONFIG_H @@ -20,7 +20,7 @@ beforeinstall: cd ${.CURDIR}; \ for m in ${HEADERS} ; do \ cmp -s $$m ${DESTDIR}/usr/include/readline/$$m || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ $$m ${DESTDIR}/usr/include/readline ; \ done |