1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
$NetBSD: patch-ae,v 1.7 2005/02/03 13:37:03 jmmv Exp $
--- config/Makefile.in.orig 2005-02-02 18:35:44.000000000 +0100
+++ config/Makefile.in
@@ -240,7 +240,7 @@ prefix = @prefix@
program_transform_name = @program_transform_name@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
-sysconfdir = @sysconfdir@
+sysconfdir = @datadir@/examples
target_alias = @target_alias@
pixmapdir = $(datadir)/pixmaps
confdir = $(sysconfdir)/gdm
@@ -478,11 +478,11 @@ uninstall-hook:
install-data-hook: gdm.conf Xsession gnome.desktop default.desktop CDE.desktop Default PostSession PreSession
if test '!' -d $(DESTDIR)$(confdir); then \
$(mkinstalldirs) $(DESTDIR)$(confdir); \
- chmod 755 $(DESTDIR)$(confdir); \
+ ${CHMOD} 755 $(DESTDIR)$(confdir); \
fi
if test '!' -d $(DESTDIR)$(crossconfdir); then \
$(mkinstalldirs) $(DESTDIR)$(crossconfdir); \
- chmod 755 $(DESTDIR)$(crossconfdir); \
+ ${CHMOD} 755 $(DESTDIR)$(crossconfdir); \
fi
-if cmp -s $(DESTDIR)$(confdir)/gdm.conf $(DESTDIR)$(confdir)/factory-gdm.conf > /dev/null 2>&1 ; then \
cp -f $(DESTDIR)$(confdir)/gdm.conf $(DESTDIR)$(confdir)/gdm.conf.orig; \
@@ -496,19 +496,16 @@ install-data-hook: gdm.conf Xsession gno
$(INSTALL_SCRIPT) $(srcdir)/XKeepsCrashing $(DESTDIR)$(confdir)/XKeepsCrashing
$(INSTALL_SCRIPT) Xsession $(DESTDIR)$(confdir)/Xsession
- -if test -f $(DESTDIR)$(localedir)/locale.alias; then \
- cp -f $(DESTDIR)$(localedir)/locale.alias $(DESTDIR)$(localedir)/locale.alias.orig; \
- fi
- $(INSTALL_DATA) $(srcdir)/locale.alias $(DESTDIR)$(localedir)/locale.alias
+ $(INSTALL_DATA) $(srcdir)/locale.alias $(DESTDIR)$(confdir)/locale.alias
if test '!' -d $(DESTDIR)$(bisessdir); then \
$(mkinstalldirs) $(DESTDIR)$(bisessdir); \
- chmod 755 $(DESTDIR)$(bisessdir); \
+ ${CHMOD} 755 $(DESTDIR)$(bisessdir); \
fi
if test '!' -d $(DESTDIR)$(instsessdir); then \
$(mkinstalldirs) $(DESTDIR)$(instsessdir); \
- chmod 755 $(DESTDIR)$(instsessdir); \
+ ${CHMOD} 755 $(DESTDIR)$(instsessdir); \
fi
-if test -f $(DESTDIR)$(bisessdir)/Default.desktop; then \
@@ -539,7 +536,7 @@ install-data-hook: gdm.conf Xsession gno
if test '!' -d $(DESTDIR)$(initdir); then \
$(mkinstalldirs) $(DESTDIR)$(initdir); \
- chmod 755 $(DESTDIR)$(initdir); \
+ ${CHMOD} 755 $(DESTDIR)$(initdir); \
fi
-if test -f $(DESTDIR)$(initdir)/Default; then \
cp -f $(DESTDIR)$(initdir)/Default $(DESTDIR)$(initdir)/Default.orig; \
@@ -548,13 +545,13 @@ install-data-hook: gdm.conf Xsession gno
if test '!' -d $(DESTDIR)$(postlogindir); then \
$(mkinstalldirs) $(DESTDIR)$(postlogindir); \
- chmod 755 $(DESTDIR)$(postlogindir); \
+ ${CHMOD} 755 $(DESTDIR)$(postlogindir); \
fi
$(INSTALL_SCRIPT) $(srcdir)/PostLogin $(DESTDIR)$(postlogindir)/Default.sample
if test '!' -d $(DESTDIR)$(predir); then \
$(mkinstalldirs) $(DESTDIR)$(predir); \
- chmod 755 $(DESTDIR)$(predir); \
+ ${CHMOD} 755 $(DESTDIR)$(predir); \
fi
-if test -f $(DESTDIR)$(predir)/Default; then \
cp -f $(DESTDIR)$(predir)/Default $(DESTDIR)$(predir)/Default.orig; \
@@ -563,7 +560,7 @@ install-data-hook: gdm.conf Xsession gno
if test '!' -d $(DESTDIR)$(postdir); then \
$(mkinstalldirs) $(DESTDIR)$(postdir); \
- chmod 755 $(DESTDIR)$(postdir); \
+ ${CHMOD} 755 $(DESTDIR)$(postdir); \
fi
-if test -f $(DESTDIR)$(postdir)/Default; then \
cp -f $(DESTDIR)$(postdir)/Default $(DESTDIR)$(postdir)/Default.orig; \
@@ -572,26 +569,14 @@ install-data-hook: gdm.conf Xsession gno
if test '!' -d $(DESTDIR)$(gnomercdir); then \
$(mkinstalldirs) $(DESTDIR)$(gnomercdir); \
- chmod 755 $(DESTDIR)$(gnomercdir); \
- fi
-
- if test '!' -d $(DESTDIR)$(logdir); then \
- $(mkinstalldirs) $(DESTDIR)$(logdir); \
- chown root:root $(DESTDIR)$(logdir); \
- chmod 755 $(DESTDIR)$(logdir); \
- fi
-
- if test '!' -d $(DESTDIR)$(authdir); then \
- $(mkinstalldirs) $(DESTDIR)$(authdir); \
- chown root:gdm $(DESTDIR)$(authdir); \
- chmod 1770 $(DESTDIR)$(authdir); \
+ ${CHMOD} 755 $(DESTDIR)$(gnomercdir); \
fi
system=`uname`; \
if test -f /usr/include/security/pam_appl.h; then \
if test '!' -d $(DESTDIR)$(PAM_PREFIX)/pam.d; then \
$(mkinstalldirs) $(DESTDIR)$(PAM_PREFIX)/pam.d; \
- chmod 755 $(DESTDIR)$(PAM_PREFIX)/pam.d; \
+ ${CHMOD} 755 $(DESTDIR)$(PAM_PREFIX)/pam.d; \
fi; \
if test $$system = Linux && test '!' -f $(DESTDIR)$(PAM_PREFIX)/pam.d/gdm; then \
$(INSTALL_DATA) gdm $(DESTDIR)$(PAM_PREFIX)/pam.d/gdm; \
|