diff options
author | Ian McKellar <yakk@src.gnome.org> | 2001-04-16 18:56:30 +0000 |
---|---|---|
committer | Ian McKellar <yakk@src.gnome.org> | 2001-04-16 18:56:30 +0000 |
commit | b22233b3c07db6bb3971a6c52806e142aa9d4ba6 (patch) | |
tree | a0505d37c40644fe5ce3530721d7a1559eca870d /config | |
parent | eb3cdcdfc34db01cd81624318d4bde69faaa19f0 (diff) | |
download | gdm-b22233b3c07db6bb3971a6c52806e142aa9d4ba6.tar.gz |
Removed this - it contained out of date gettext stuff that was screwing up
* acinclude.m4:
Removed this - it contained out of date gettext stuff that was
screwing up my build.
* config/Default.debian:
* config/Makefile.am:
* configure.in:
* debian/.cvsignore:
* debian/README.Debian:
* debian/changelog.in:
* debian/changelog.old:
* debian/control:
* debian/copyright:
* debian/dirs:
* debian/docs:
* debian/ex.doc-base.package:
* debian/gdm.pod:
* debian/gdmchooser.pod:
* debian/gdmlogin.pod:
* debian/init:
* debian/postinst:
* debian/postrm:
* debian/rules:
Added Debian build stuff and default config. It shouldn't break
builds on other platforms, but it might.
Diffstat (limited to 'config')
-rwxr-xr-x | config/Default.debian | 3 | ||||
-rw-r--r-- | config/Makefile.am | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/config/Default.debian b/config/Default.debian new file mode 100755 index 00000000..398fd28f --- /dev/null +++ b/config/Default.debian @@ -0,0 +1,3 @@ +#!/bin/sh + +exec /etc/X11/Xsession diff --git a/config/Makefile.am b/config/Makefile.am index 1f582020..4d09aeb1 100644 --- a/config/Makefile.am +++ b/config/Makefile.am @@ -23,6 +23,7 @@ EXTRA_DIST = \ PostSession \ PreSession \ Default.redhat \ + Default.debian \ Failsafe.redhat install-data-hook: gdm.conf gnomerc Gnome Failsafe @@ -51,6 +52,9 @@ install-data-hook: gdm.conf gnomerc Gnome Failsafe if test '!' -f $(sessdir)/Failsafe; then \ $(INSTALL_SCRIPT) Failsafe $(sessdir)/Failsafe; \ fi + if test -e /etc/debian_version; then \ + $(INSTALL_SCRIPT) $(srcdir)/Default.debian $(sessdir)/Default; \ + fi if test '!' -d $(initdir); then \ $(mkinstalldirs) $(initdir); \ |