2008/2/2, Eric Lavarde <[EMAIL PROTECTED]>: > I found a bashism in export_mp2.so, it uses the redirection > '>&/dev/null' which is supposed to be a shortcut for '>/dev/null 2>&1' > but doesn't work under a POSIX shell like dash. > I'm using the 1.0.2 version packaged for Ubuntu 7.10, so it's possibly > already fixed, but I wanted to be sure. > > And if someone knows of a workaround, I'd be very grateful.
Well, it;s a warty hack, but you could, as root, "ln -s dev/null /null" then use a binary editor on the .so file to overwrite >&/dev/null with >/null 2>&1 M