Package: audiolink Version: 0.05-1 Filename: pool/main/a/audiolink/audiolink_0.05-1_all.deb Found error in /usr/bin/audiolink: $ grep -A5 -B5 /tmp/ /usr/bin/audiolink $db_name = "aldb"; print "\nCreating the AudioLink database..." if $verbose; $ret = system("mysqladmin -u$user -p$password -h$host create $db_name 2>/tmp/audiolink.db.tmp"); # or print "\nSome error occured. # If the error reported that the database already exists, it's okay. You already had the database created. # If it was some other error, consult the mysqladmin man page and/or notify the AudioLink developers.\n # Anyways, continuing to create AudioLink tables.\n"; open (DBOP, "/tmp/audiolink.db.tmp"); while () { if ( /database exists/i) { print "The database already exists.\n" if $verbose; } else { die "\nSome error occured while creating the database:\n$_\n" -- close DBOP; print "\nCreating the AudioLink tables..." if $verbose; $ret = system ("mysql -u$user -p$password -h$host $db_name < /usr/share/doc/audiolink/mysql.schema 2>/tmp/audiolink.tb.tmp"); # or print "\nSome error occured. # If the error reported that the table already exists, it's okay. You already had the table created. # If it was some other error, consult the mysql man page and/or notify the AudioLink developers.\n"; open (DBOP, "/tmp/audiolink.tb.tmp"); while () { if ( /already exists/i) { print "The table already exists.\n" if $verbose; } else {