Index: /trunk/libffado/support/tools/ffado-diag.in =================================================================== --- /trunk/libffado/support/tools/ffado-diag.in (revision 2024) +++ /trunk/libffado/support/tools/ffado-diag.in (revision 2125) @@ -26,5 +26,5 @@ # Add the path of the installed dependent files -sys.path.append( "$PYTHONDIR" ) +sys.path.insert(0, "$PYTHONDIR" ) from listirqinfo import IRQ,SoftIRQ,IRQInfo Index: /trunk/libffado/support/mixer-qt4/ffado-mixer-profiler.in =================================================================== --- /trunk/libffado/support/mixer-qt4/ffado-mixer-profiler.in (revision 1748) +++ /trunk/libffado/support/mixer-qt4/ffado-mixer-profiler.in (revision 2125) @@ -26,5 +26,5 @@ # Add the path of the installed ffado-modules # for path in sys.path: -sys.path.append( "$PYPKGDIR" ) +sys.path.insert(0, "$PYPKGDIR" ) from ffado.ffadowindow import * Index: /trunk/libffado/support/mixer-qt4/ffado-mixer.in =================================================================== --- /trunk/libffado/support/mixer-qt4/ffado-mixer.in (revision 1748) +++ /trunk/libffado/support/mixer-qt4/ffado-mixer.in (revision 2125) @@ -27,5 +27,5 @@ # Add the path of the installed ffado-modules # for path in sys.path: -sys.path.append( "$PYPKGDIR" ) +sys.path.insert(0, "$PYPKGDIR" ) from ffado.ffadowindow import *