From 25558c6c4d4d00cf387dc0781f52e9ed5f1768a9 Mon Sep 17 00:00:00 2001 From: Jay Lepreau Date: Fri, 15 Nov 1985 17:43:03 -0800 Subject: [PATCH] install -s, not -c SCCS-vsn: usr.bin/patch/Makefile 5.2 --- usr/src/usr.bin/patch/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/src/usr.bin/patch/Makefile b/usr/src/usr.bin/patch/Makefile index 9b3dd03f99..c24e8b3c26 100644 --- a/usr/src/usr.bin/patch/Makefile +++ b/usr/src/usr.bin/patch/Makefile @@ -1,4 +1,4 @@ -# @(#)Makefile 5.1 (Berkeley) %G% +# @(#)Makefile 5.2 (Berkeley) %G% # # $Header: Makefile,v 1.3 85/03/26 15:03:26 lwall Exp $ @@ -8,11 +8,11 @@ patch: patch.c cc patch.c -O -o patch install: - install -c patch $(BINDIR) + install -s patch $(BINDIR) install -c -m 444 patch.n ${DESTDIR}/usr/man/mann/patch.n clean: - rm patch + rm -f patch patch.kit a.out core errs shar: shar patch.man patch.c Makefile >patch.kit -- 2.20.1