diff options
author | Guillem Jover <guillem@debian.org> | 2004-09-22 23:03:15 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2004-09-22 23:03:15 +0000 |
commit | e2c0607d4d4cbb03f240e8e14224f9464a4eb3b5 (patch) | |
tree | ebb7e1eaaba646866d06fc7da1de8e758687cb45 /debian | |
parent | 3599fb62783d327960655c2d24be890b8c32fa72 (diff) |
debian/hurd.postinst: Move /bin/login suid root chmod to debian/rules.
Diffstat (limited to 'debian')
-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 + |