From 9f23daedb96a1c2dde104d906536bece2a5d0d59 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Thu, 15 Jun 2006 19:57:21 +0000 Subject: [PATCH] * enhanced mnemosyne.pl to understand that dependencies starting by CFGTEMP are not modules which need a prefix --- mnemosyne.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mnemosyne.pl b/mnemosyne.pl index 0208e01..509ba66 100644 --- a/mnemosyne.pl +++ b/mnemosyne.pl @@ -129,7 +129,7 @@ sub scanmodule { if (exists $current{deps}) { my @deps; for ( split (/\s+/,$current{deps}) ) { - $_="SDECFG_$prefix\_$_" unless /^SDECFG/; + $_="SDECFG_$prefix\_$_" unless /^(SDECFG|CFGTEMP)/; if (/=/) { m/(.*?)(==|!=|=)(.*)/i;