From 31b31a216cc1ef378840c37682d3e8107e8e8072 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 11 Feb 2008 18:14:35 +0000 Subject: convert module deps to modname as well --- mdk-stage1/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdk-stage1') diff --git a/mdk-stage1/modules.c b/mdk-stage1/modules.c index 3b477f3c3..b04c3038b 100644 --- a/mdk-stage1/modules.c +++ b/mdk-stage1/modules.c @@ -149,7 +149,7 @@ static int load_modules_dependencies(void) while (start && *start) { ptr = strchr(start, ' '); if (ptr) *ptr = '\0'; - tmp_deps[i++] = strdup(start); + tmp_deps[i++] = filename2modname(start); if (ptr) start = ptr + 1; else -- cgit v1.2.1