forked from pool/timezone
cd5e2cb673
- Update to 2014g (bnc#894862) - Update to 2014f (bnc#890921, bnc#892843) OBS-URL: https://build.opensuse.org/request/show/247449 OBS-URL: https://build.opensuse.org/package/show/Base:System/timezone?expand=0&rev=141
55 lines
1.2 KiB
Diff
55 lines
1.2 KiB
Diff
This patch is used on openSUSE versions older than 12.2.
|
|
Back then, /etc/localtime was either a hard link to a zone
|
|
file in /usr/share/zoneinfo or a copy of it.
|
|
|
|
By default, zic tries the following approaches to create
|
|
/etc/localtime:
|
|
|
|
1. Hard link
|
|
2. Symbolic link
|
|
3. File copy
|
|
|
|
This patch changes the order to:
|
|
|
|
1. Hard link
|
|
2. File copy
|
|
3. Symbolic link
|
|
|
|
Index: timezone-2014g/zic.c
|
|
===================================================================
|
|
--- timezone-2014g.orig/zic.c
|
|
+++ timezone-2014g/zic.c
|
|
@@ -686,6 +686,23 @@ namecheck(const char *name)
|
|
componentcheck(name, component, cp);
|
|
}
|
|
|
|
+static int
|
|
+copy(fromname, toname)
|
|
+const char * const fromname;
|
|
+const char * const toname;
|
|
+{
|
|
+ if (!fork()) {
|
|
+ execl("/bin/cp", "cp", fromname, toname, (char*) NULL);
|
|
+ _exit(1);
|
|
+ }
|
|
+ int s;
|
|
+ if (wait(&s) < 0)
|
|
+ return -1;
|
|
+ if (!WIFEXITED(s))
|
|
+ return -1;
|
|
+ return -WEXITSTATUS(s);
|
|
+}
|
|
+
|
|
static void
|
|
dolink(const char *const fromfield, const char *const tofield)
|
|
{
|
|
@@ -728,6 +745,8 @@ dolink(const char *const fromfield, cons
|
|
exit(EXIT_FAILURE);
|
|
|
|
result = link(fromname, toname);
|
|
+ if (result != 0)
|
|
+ result = copy(fromname, toname);
|
|
if (result != 0) {
|
|
const char *s = fromname;
|
|
const char *t;
|