From 5194f8bf8a9e6a8e970c3d6629c6571b791c9862 Mon Sep 17 00:00:00 2001 From: David Turner Date: Wed, 2 Feb 2000 12:48:20 +0000 Subject: [PATCH] fixed a small bug that prevented the modules list to be properly erased on Win32 when invoking "make modules" from the top directory.. --- config/modules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/modules.mk b/config/modules.mk index 56678d9cb..97db37736 100644 --- a/config/modules.mk +++ b/config/modules.mk @@ -36,7 +36,7 @@ FT_MODULE_LIST := $(BUILD)$(SEP)ftmodule.h # file in order to `clean' the list # clean_module_list: - @-$(DELETE) $(FT_MODULE_LIST) + @-$(DELETE) $(subst $(SEP),$(HOSTSEP),$(FT_MODULE_LIST)) @-echo Regenerating the font drivers list in $(FT_MODULE_LIST) make_module_list: clean_module_list