diff options
author | Jaroslav Kysela <perex@perex.cz> | 2007-07-11 10:12:24 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-07-11 10:12:24 +0200 |
commit | 8d0fb15b2bedb89693560098d8b6c4fa1c022c0c (patch) | |
tree | dfc62156583a16bd4be72e8a5f1b1bbf1c04c9cf /alsamixer | |
parent | 50d240e688c7f2ee5cb8e010851b28c26473611a (diff) |
amixer/alsamixer - updated go scripts for debugging
Diffstat (limited to 'alsamixer')
-rwxr-xr-x | alsamixer/go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/alsamixer/go b/alsamixer/go index 2a4059a..c33c298 100755 --- a/alsamixer/go +++ b/alsamixer/go @@ -1,8 +1,10 @@ #!/bin/bash -#DBG="gdb --args" +#GDB="gdb --args" +GDB="" -ALSA_MIXER_SIMPLE_MODULES="$HOME/hg/alsa-lib/src/mixer/simple/.libs" \ +ALSA_MIXER_SIMPLE_MODULES="$HOME/hg/alsa-lib/modules/mixer/simple/.libs" \ ALSA_MIXER_SIMPLE="$HOME/hg/alsa-lib/src/conf/smixer.conf" \ +ALSA_MIXER_SIMPLE_MPYTHON="$HOME/hg/alsa-lib/modules/mixer/simple/python/main.py" \ LD_PRELOAD="$HOME/hg/alsa-lib/src/.libs/libasound.so" \ -exec $DBG ./alsamixer "$@" +$GDB ./alsamixer "$@" |