From b0e9d4c91efb78213bb8fc2fddfdf5ecd4543599 Mon Sep 17 00:00:00 2001 From: lwthiker Date: Sat, 14 May 2022 17:58:22 +0300 Subject: [PATCH] Use 'rm -f' in Makefile.in Use 'rm -f' to ignore non-existant file errors. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 23e2b6f..c9e13aa 100644 --- a/Makefile.in +++ b/Makefile.in @@ -76,7 +76,7 @@ firefox-uninstall: ## Uninstall the Firefox version of curl-impersonate after 'm firefox-clean: ## Clean build artifacts of the Firefox version. Use after re-running './configure' cd $(CURL_VERSION) $(MAKE) clean MAKEFLAGS= - rm .firefox + rm -f .firefox .PHONY: firefox-clean chrome-build: $(CURL_VERSION)/.chrome ## Build the Chrome version of curl-impersonate @@ -111,7 +111,7 @@ chrome-uninstall: ## Uninstall the Chrome version of curl-impersonate after 'mak chrome-clean: ## Clean build artifacts of the Chrome version. Use after re-running './configure' cd $(CURL_VERSION) $(MAKE) clean MAKEFLAGS= - rm .chrome + rm -f .chrome .PHONY: chrome-clean clean: ## Remove all build artifacts, including dependencies