diff options
author | David Mohammed <fossfreedom@ubuntu.com> | 2019-06-11 14:55:30 +0100 |
---|---|---|
committer | Martin Wimpress <code@flexion.org> | 2019-06-15 17:49:01 +0100 |
commit | c0333bce6af8100a8440f13ae88be1a1e49c64eb (patch) | |
tree | dc3fd7043cbf506ebe74ebd852634a8eb46ac7b1 | |
parent | Allow desktops such as budgie to autostart (diff) | |
download | magnus-c0333bce6af8100a8440f13ae88be1a1e49c64eb.tar.gz magnus-c0333bce6af8100a8440f13ae88be1a1e49c64eb.tar.bz2 magnus-c0333bce6af8100a8440f13ae88be1a1e49c64eb.zip |
Ensure autostart file is installed to the correct global location
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ def datafilelist(installbase, sourcebase): data_files = [ ('{prefix}/share/man/man1'.format(prefix=sys.prefix), glob('data/*.1')), ('{prefix}/share/applications'.format(prefix=sys.prefix), ['data/magnus.desktop',]), - ('{prefix}/etc/xdg/autostart'.format(prefix=sys.prefix), ['data/magnus-autostart.desktop',]), + ('/etc/xdg/autostart'.format(prefix=sys.prefix), ['data/magnus-autostart.desktop',]), ] #data_files.extend(datafilelist('{prefix}/share/locale'.format(prefix=sys.prefix), 'build/mo')) |