Comment 21 for bug 1269731

Revision history for this message
TJ (tj) wrote :

The three alsa config files incorrectly use shell constructions for testing variables:

WRONG:

if ! test -d $ALSACTLHOME ; then

CORRECT:

if [ ! -d $ALSACTLHOME ]; then