Hi, A solution has been found by the Ubuntu guys and I've tested in my debian squeeze and it works too: https://bugs.launchpad.net/ubuntu/+source/k3b/+bug/45026 In short, the problem is that the version returned by normalize-audio -- version is "normalize 0.7.7", and "normalize-audio 0.7.7" is expected by k3b; so the solution is to change the name of the normalize-audio for normalize, and create a script named normalize-audio in which the version line is replaced by the accepted by k3b. This is the script: ### #/bin/bash case "$1" in --version) echo "Empty line" normalize --version | sed -e 's/normalize/normalize-audio/g' ;; *) normalize $* ;; esac ###
Best regards Raúl. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org