From aa223e8a029e1dc149521edaffc54bebcb6256c1 Mon Sep 17 00:00:00 2001 From: Jan Vrany Date: Mon, 4 Dec 2023 18:58:28 +0000 Subject: [PATCH] Update makefiles after MachineArithmetic moved packages to `src` directory MachineArithmetic commit 2eab9386 "Move smalltalk sources to `src` directory" moved all packages into `src` subdirectory. This commit updates makefiles to reflect this change. --- pharo/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pharo/GNUmakefile b/pharo/GNUmakefile index a567741..b685cea 100644 --- a/pharo/GNUmakefile +++ b/pharo/GNUmakefile @@ -71,7 +71,7 @@ prereq:: $(PROJECT).image: ../src/*/*.st $(call pharo-copy-image, $(PHARO_IMAGE), $@) - $(call pharo-load-local, $@, MachineArithmetic,$(MACHINEARITHMETIC_DIR)) + $(call pharo-load-local, $@, MachineArithmetic,$(MACHINEARITHMETIC_DIR)/src) $(call pharo-load-local, $@, ArchC, $(ARCHC_DIR)/src) $(call pharo-load-local, $@, SmallRSP, $(SMALLRSP_DIR)/src) $(call pharo-load-local, $@, LibUnix, $(PHARO_HACKS_DIR)/src)