From 17c5b4943b73927d0ce578bf6519ac9fcc65d9a7 Mon Sep 17 00:00:00 2001 From: midipix Date: Dec 17 2018 09:19:37 +0000 Subject: pycompile: config.tag: ordering: touch target files after copying. --- diff --git a/project/pycompile.mk b/project/pycompile.mk index 1e09d32..c116f85 100644 --- a/project/pycompile.mk +++ b/project/pycompile.mk @@ -53,9 +53,11 @@ else $(PYCOMPILE_DIR)/config.tag: mkdir -p $(PYCOMPILE_DIR)/build - cp -a $(PROJECT_DIR)/config/$(CFGHOST)/config.c $(PYCOMPILE_DIR)/build/ - cp -a $(PROJECT_DIR)/config/$(CFGHOST)/pyconfig.h $(PYCOMPILE_DIR)/build/ + cp -p $(PROJECT_DIR)/config/$(CFGHOST)/config.c $(PYCOMPILE_DIR)/build/ + cp -p $(PROJECT_DIR)/config/$(CFGHOST)/pyconfig.h $(PYCOMPILE_DIR)/build/ touch $(PYCOMPILE_DIR)/config.tag + touch $(PYCOMPILE_DIR)/build/config.c + touch $(PYCOMPILE_DIR)/build/pyconfig.h endif