From 9042c45f27faa76bab38d4f923ef8475c700aeaa Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 7 Dec 2000 22:56:18 +0000 Subject: [PATCH] Fix spurious errors from deleting non-existent files. --- v7/src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/Makefile b/v7/src/Makefile index 1b7fc6c44..cb73d33cb 100644 --- a/v7/src/Makefile +++ b/v7/src/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 2000/12/07 22:55:13 cph Exp $ +# $Id: Makefile,v 1.15 2000/12/07 22:56:18 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -65,7 +65,7 @@ clean: clean-extra done clean-extra: mostlyclean-extra - rm lib/*.com + -rm -f lib/*.com distclean: distclean-extra @for SUBDIR in $(SUBDIRS); do \ -- 2.25.1