647 | | # Temporary code to remove the installed qt3 mixer |
---|
648 | | # |
---|
649 | | import shutil |
---|
650 | | if os.path.exists( os.path.join( env['BINDIR'], "ffado-mixer-qt3" ) ): |
---|
651 | | print "Removing the old qt3-mixer from the installation..." |
---|
652 | | os.remove( os.path.join( env['BINDIR'], "ffado-mixer-qt3" ) ) |
---|
653 | | if os.path.exists( os.path.join( env['SHAREDIR'], 'python-qt3' ) ): |
---|
654 | | print "Removing the old qt3-mixer files from the installation..." |
---|
655 | | shutil.rmtree( os.path.join( env['SHAREDIR'], 'python-qt3' ) ) |
---|
656 | | if os.path.exists( os.path.join( env['SHAREDIR'], 'python' ) ): |
---|
657 | | print "Removing the old qt3-mixer files from the installation..." |
---|
658 | | shutil.rmtree( os.path.join( env['SHAREDIR'], 'python' ) ) |
---|
659 | | |
---|
660 | | |
---|
661 | | # |
---|