File: fix-defs.patch

package info (click to toggle)
gnome-tweaks 49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,796 kB
  • sloc: python: 2,553; sh: 22; xml: 10; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 823 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Jeremy Bicha <jbicha@debian.org>
Date: Tue, 29 Aug 2017 18:10:06 -0400
Subject: Workaround issue where TWEAKDIR is set to

/usr/lib/python3.5/site-packages/gtweak/
which obviously won't work
---
 gtweak/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gtweak/meson.build b/gtweak/meson.build
index eb162b0..b2374c7 100644
--- a/gtweak/meson.build
+++ b/gtweak/meson.build
@@ -6,7 +6,7 @@ defs_conf.set('LOCALEDIR', localedir)
 defs_conf.set('PKGDATADIR', pkgdatadir)
 defs_conf.set('BINDIR', bindir)
 defs_conf.set('APPID', pkgappid)
-defs_conf.set('TWEAKDIR', join_paths(gtweakdir, 'tweaks'))
+defs_conf.set('TWEAKDIR', join_paths('/usr/lib/python3/dist-packages/gtweak', 'tweaks'))
 defs_conf.set('VERSION', meson.project_version())
 defs_conf.set('PROFILE', get_option('profile'))