~ chicken-core (chicken-5) 2d618395120f92631192eff17ce70ccf4da8e88b
commit 2d618395120f92631192eff17ce70ccf4da8e88b Author: felix <felix@call-with-current-continuation.org> AuthorDate: Fri Dec 7 11:36:41 2018 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Fri Dec 7 11:36:41 2018 +0100 Remove use of undefined variable in rules.make diff --git a/rules.make b/rules.make index c7fdfbe9..793e38b9 100644 --- a/rules.make +++ b/rules.make @@ -127,7 +127,7 @@ $(eval $(call declare-static-libchicken-object,eval-modules)) define declare-import-lib-object $(1).import$(O): $(1).import.c chicken.h $$(CHICKEN_CONFIG_H) - $$(C_COMPILER) $$(C_COMPILER_OPTIONS) $$(C_COMPILER_PTABLES_OPTIONS) \ + $$(C_COMPILER) $$(C_COMPILER_OPTIONS) \ -DC_SHARED $$(C_COMPILER_COMPILE_OPTION) \ $$(C_COMPILER_OPTIMIZATION_OPTIONS) $$(C_COMPILER_SHARED_OPTIONS) \ $$(C_COMPILER_BUILD_RUNTIME_OPTIONS) $$< $$(C_COMPILER_OUTPUT) \Trap