From 948c3e649a66ef8b996d6f586f1fa74cd4013ad4 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 1 May 2016 03:34:18 +0200 Subject: [PATCH] Remove obsolete `-c` option to install This is in reference to issue #4, which was fixed differently by recent patch. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eb3744e..da4638c 100644 --- a/Makefile +++ b/Makefile @@ -38,11 +38,11 @@ version.h: Makefile install: $(PROGS) install -d $(BINDIR) $(SBINDIR) $(MANDIR) $(MANDIR)/man1 $(MANDIR)/man8 install -s mt $(BINDIR) - install -c -m 444 mt.1 $(MANDIR)/man1 + install -m 444 mt.1 $(MANDIR)/man1 (if [ -f $(MANDIR)/man1/mt.1.gz ] ; then \ rm -f $(MANDIR)/man1/mt.1.gz; gzip $(MANDIR)/man1/mt.1; fi) install -s stinit $(SBINDIR) - install -c -m 444 stinit.8 $(MANDIR)/man8 + install -m 444 stinit.8 $(MANDIR)/man8 (if [ -f $(MANDIR)/man8/stinit.8.gz ] ; then \ rm -f $(MANDIR)/man8/stinit.8.gz; gzip $(MANDIR)/man8/stinit.8; fi)