Package: abcde Version: 2.3.99.6-1 Even if -M is specified (as mentioned in the manpage's documentation for -1), a cuefile is not created. I looked at the code, and it appears that DOCUE is being initialized to "n" *after* it has been set to "y" via -M.
I suspect that the DOCUE initialization (and perhaps the other initializations) should be moved above the option processing, but the patch below, which fixes the immediate problem, only moves DOCUE. Also note that the manpage doesn't have an entry for -M. Thanks --- /usr/bin/abcde 2006-08-05 12:14:30.000000000 -0700 +++ abcde 2006-10-31 22:11:58.000000000 -0800 @@ -3090,6 +3090,8 @@ fi fi +DOCUE=n + # Parse command line options #while getopts 1a:bc:C:d:Dehj:klLmMnNo:pPr:Rs:S:t:T:vVxw:W: opt ; do while getopts 1a:bBc:C:d:Defghj:klLmMnNo:pPr:s:S:t:T:UvVxX:w:W:z opt ; do @@ -3249,7 +3251,6 @@ DOREPLAYGAIN=n DOPLAYLIST=n DOCLEAN=n -DOCUE=n for ACTION in $(echo $ACTIONS | tr , \ ) do -- Rob Browning rlb @defaultvalue.org and @debian.org; previously @cs.utexas.edu GPG starting 2002-11-03 = 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]