[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] odd/source_script_in_makefile d0ec74c 3/3: Invoke 'r
From: |
Greg Chicares |
Subject: |
[lmi-commits] [lmi] odd/source_script_in_makefile d0ec74c 3/3: Invoke 'rm' without '--force' |
Date: |
Sat, 18 May 2019 08:17:23 -0400 (EDT) |
branch: odd/source_script_in_makefile
commit d0ec74c4844a9b9161b7c8994cd2ea89393a9ed0
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>
Invoke 'rm' without '--force'
The historical reason for using '--force' seems no longer to exist.
---
parent.make | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/parent.make b/parent.make
index 6a3cf83..8186415 100644
--- a/parent.make
+++ b/parent.make
@@ -18,8 +18,7 @@ export LMI_ENV_FILE := env_$(shell date -u +'%s_%N').eraseme
parent.make:: source_env_vars ;
$(eval include $(LMI_ENV_FILE))
@echo "'$$LMI_IN' --> '$$LMI_OUT1', '$$LMI_OUT2' : eval in
'parent.make'"
-# '--force': the file won't be there when this makefile is remade
- rm --force $(LMI_ENV_FILE)
+ rm $(LMI_ENV_FILE)
.PHONY: source_env_vars
source_env_vars: