Awn

Comment 6 for bug 236604

Revision history for this message
Andrew Starr-Bochicchio (andrewsomething) wrote :

>try to force the prefix=/usr (but cdbs should do all this).

That's not the issue. "/usr/share/icons/hicolor/scalable/apps/awn-manager.svg" exists.

The problem is that awn-manager is looking for it in: '/usr/local/share/icons/hicolor/scalable/apps/awn-manager.svg'

Line 68 of awnManager.py is:

        icon_search_path = os.path.join('/usr/local/share', 'icons')

While line 68 of awnManager.py.in is:

       icon_search_path = os.path.join('@DATADIR@', 'icons')

Looking at '/usr/bin/awn-manager' after installation shows that @DATADIR@ has been correctly changed to '/usr/share':

        icon_search_path = os.path.join('/usr/share', 'icons')

I don't understand why it's looking for: '/usr/local/share/icons/hicolor/scalable/apps/awn-manager.svg'

I guess I'll reopen the upstream task as this seems to be a problem with awn-manager itself. It seems as if this should be happening on any copy of AWN configured with the flag '--prefix=/usr'.