Browse Source

* improved mnemosyne.pl to not need IGNORE_TOKEN

legacy/multilib
Alejandro Mery 19 years ago
parent
commit
96614f3355
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mnemosyne.pl

+ 2
- 2
mnemosyne.pl

@ -240,7 +240,7 @@ sub process_modules {
}
if (! $related) {
print $WRITE "$module->{var} IGNORE_TOKEN\n";
print $WRITE "$module->{var} $module->{var}\n";
}
}
@ -249,7 +249,7 @@ sub process_modules {
# and populate the sorted list
my @sorted;
while(<$READ>) {
if (! /^IGNORE_TOKEN/ && /(.*)\n/) { push @sorted, $1; }
if (/(.*)\n/) { push @sorted, $1; }
}
waitpid $pid,0;

Loading…
Cancel
Save