Browse Source

* enhanced mnemosyne.pl to understand that dependencies starting by CFGTEMP are not modules which need a prefix

legacy/multilib
Alejandro Mery 18 years ago
parent
commit
9f23daedb9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mnemosyne.pl

+ 1
- 1
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;

Loading…
Cancel
Save