25 lines
652 B
Diff
25 lines
652 B
Diff
From 5062d61868e8bae1caaeb6e63aa55b9ac9d21efc Mon Sep 17 00:00:00 2001
|
|
From: Tobias Klaus <tk@meskalero.de>
|
|
Date: Sun, 8 Jan 2017 14:25:07 +0100
|
|
Subject: [PATCH] fixes installdir for config files
|
|
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 946f334..9bd842f 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -22,7 +22,7 @@ setup(
|
|
'autosuspend.py'
|
|
],
|
|
data_files=[
|
|
- ('etc', ['autosuspend.conf', 'autosuspend-logging.conf']),
|
|
+ ('/etc', ['autosuspend.conf', 'autosuspend-logging.conf']),
|
|
('lib/systemd/system', ['autosuspend.service'])
|
|
]
|
|
)
|
|
--
|
|
2.11.0
|
|
|