From cba2dd271f24ea759b9a153ff80cbd9361fe10f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gustavsson?= Date: Tue, 4 May 2021 12:53:05 +0200 Subject: Fix broken update of the primary bootstrap After 4bdab0f25d2d it was no longer possible to update the primary bootstrap because a spurious `-f` from the previous `cp` command was left in the command line for `install`. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 4c1a8f74f8..4f76211648 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1039,8 +1039,8 @@ primary_bootstrap_mkdirs: primary_bootstrap_copy: $(make_verbose) - $(V_at)${INSTALL_DATA} -p -f lib/kernel/include/*.hrl $(BOOTSTRAP_TOP)/lib/kernel/include - $(V_at)${INSTALL_DATA} -p -f lib/stdlib/include/*.hrl $(BOOTSTRAP_TOP)/lib/stdlib/include + $(V_at)${INSTALL_DATA} -p lib/kernel/include/*.hrl $(BOOTSTRAP_TOP)/lib/kernel/include + $(V_at)${INSTALL_DATA} -p lib/stdlib/include/*.hrl $(BOOTSTRAP_TOP)/lib/stdlib/include # To remove modules left by the bootstrap building, but leave (restore) # the modules in kernel which are needed for an emulator build -- cgit v1.2.1