31 lines
927 B
Diff
31 lines
927 B
Diff
From 2778186be31a8f949135ed99232eafee201a668d Mon Sep 17 00:00:00 2001
|
|
From: Thomas Tuegel <ttuegel@gmail.com>
|
|
Date: Fri, 28 Aug 2015 10:16:53 -0500
|
|
Subject: [PATCH 2/2] zoneinfo
|
|
|
|
---
|
|
kcms/dateandtime/helper.cpp | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp
|
|
index fc4a6b9..7b64d05 100644
|
|
--- a/kcms/dateandtime/helper.cpp
|
|
+++ b/kcms/dateandtime/helper.cpp
|
|
@@ -181,7 +181,12 @@ int ClockHelper::tz( const QString& selectedzone )
|
|
|
|
val = selectedzone;
|
|
#else
|
|
- QString tz = "/usr/share/zoneinfo/" + selectedzone;
|
|
+ // NixOS-specific path
|
|
+ QString tz = "/etc/zoneinfo/" + selectedzone;
|
|
+ if (!QFile::exists(tz)) {
|
|
+ // Standard Linux path
|
|
+ tz = "/usr/share/zoneinfo/" + selectedzone;
|
|
+ }
|
|
|
|
if (QFile::exists(tz)) { // make sure the new TZ really exists
|
|
QFile::remove("/etc/localtime");
|
|
--
|
|
2.5.0
|
|
|