From: Sam Hartman Date: Thu, 23 May 1996 23:30:44 +0000 (+0000) Subject: * Ignore the error if we cannot make ksu set-uid; we don't want to X-Git-Tag: krb5-1.0-beta6~42 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=62c1d1059396b638487bb4ee6a8fa915c9a846c0;p=krb5.git * Ignore the error if we cannot make ksu set-uid; we don't want to abort make install in this situation. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8117 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/clients/ksu/ChangeLog b/src/clients/ksu/ChangeLog index cc5925a05..2fd6f18c1 100644 --- a/src/clients/ksu/ChangeLog +++ b/src/clients/ksu/ChangeLog @@ -1,3 +1,9 @@ +Tue May 21 19:14:27 1996 Sam Hartman + + * Makefile.in (install): Ignore error return from installation of + ksu; if we can't set the setuid bit (AFS or non-root), we should + still continue. + Mon May 20 00:07:16 1996 Sam Hartman * main.c (main): Do not force source cache open if we are going to use it as the target. diff --git a/src/clients/ksu/Makefile.in b/src/clients/ksu/Makefile.in index 3dbbfa370..5b161c6e3 100644 --- a/src/clients/ksu/Makefile.in +++ b/src/clients/ksu/Makefile.in @@ -23,7 +23,7 @@ clean:: $(RM) ksu install:: - for f in ksu; do \ + -for f in ksu; do \ $(INSTALL_SETUID) $$f \ $(DESTDIR)$(CLIENT_BINDIR)/`echo $$f|sed '$(transform)'`; \ $(INSTALL_DATA) $(srcdir)/$$f.M \