From aed55b5b11ef1759add702bbf58674434e5e54cd Mon Sep 17 00:00:00 2001 From: Michael Soegtrop <7895506+MSoegtropIMC@users.noreply.github.com> Date: Sun, 2 Aug 2020 11:42:58 +0200 Subject: [PATCH] Fix list of installed files for 64 bit build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7307f8d81f..2445971f42 100755 --- a/Makefile +++ b/Makefile @@ -634,7 +634,7 @@ endif PROGS64_FILES=$(V64_ORDINARY) -INSTALL_FILES_SRC=$(shell util/calc_install_files $(PROGSDIR)) +INSTALL_FILES_SRC=$(shell BITSIZE=$(BITSIZE) ARCH=$(ARCH) util/calc_install_files $(PROGSDIR)) INSTALL_FILES_VO=$(patsubst %.v,%.vo,$(INSTALL_FILES_SRC)) INSTALL_FILES=$(sort $(INSTALL_FILES_SRC) $(INSTALL_FILES_VO))