From f08e404ab39f3cf6030e56e36bae607a70066616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Tue, 4 Feb 2014 19:42:31 +0100 Subject: [PATCH] minor change on a debian patch --- debian/patches/0001-Correct-resource-path-in-setup.py.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/patches/0001-Correct-resource-path-in-setup.py.patch b/debian/patches/0001-Correct-resource-path-in-setup.py.patch index 8aec23752..133bde286 100644 --- a/debian/patches/0001-Correct-resource-path-in-setup.py.patch +++ b/debian/patches/0001-Correct-resource-path-in-setup.py.patch @@ -15,7 +15,7 @@ index 3f702ae..9622d75 100644 with io.open(resource_file, 'w', encoding='utf-8', errors='strict') as fp: - path = os.path.abspath(os.path.join(self.install_data, 'share')) -+ path = os.path.join('/usr', 'share') ++ path = '/usr/share' if sys.version_info[0] < 3: path = unicode(path) fp.write(path)