diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/hurd.postinst | 1 | ||||
-rwxr-xr-x | debian/rules | 4 |
3 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 96b3219e..4203e119 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,12 @@ hurd (20040508-4) UNRELEASED; urgency=low + [ Michael Banck ] * debian/changelog: Added back 20040301-1 entry which got lost. * debian/hurd.install: Do not install /sbin/fsck. (Closes: #272655) + [ Guillem Jover ] + * debian/hurd.postinst: Move /bin/login suid root chmod to debian/rules. + -- Michael Banck <mbanck@debian.org> Tue, 21 Sep 2004 19:23:51 +0200 hurd (20040508-3) unstable; urgency=low diff --git a/debian/hurd.postinst b/debian/hurd.postinst index 7daf7b2d..f733e82e 100644 --- a/debian/hurd.postinst +++ b/debian/hurd.postinst @@ -19,4 +19,3 @@ for i in vcs tty1 tty2 tty3 tty4 tty5 tty6; do fi done -chmod u+s /bin/login diff --git a/debian/rules b/debian/rules index 608d7744..cfd3a825 100755 --- a/debian/rules +++ b/debian/rules @@ -32,3 +32,7 @@ DEB_MAKE_INSTALL_TARGET = install prefix=$(DEB_DESTDIR) sysconfdir=$(DEB_DESTDIR install/hurd:: # runsystem is managed by update-alternatives mv debian/tmp/libexec/runsystem debian/tmp/libexec/runsystem.gnu + +binary-predeb/hurd:: + chmod u+s $(DEB_DESTDIR)/bin/login + |