From a5bd863decbb368b4cd7aeb8c4d014887e548847 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 9 Jul 2010 11:06:21 -0400 Subject: [PATCH] Fix installation of sudo_noexec.so --HG-- branch : 1.7 --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 9170163d0..c7f70fb94 100644 --- a/Makefile.in +++ b/Makefile.in @@ -492,7 +492,7 @@ install-binaries: install-dirs $(PROGS) if [ -f sesh ]; then $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0111 -s sesh $(DESTDIR)$(libexecdir)/sesh; fi install-noexec: install-dirs libsudo_noexec.la - if [ -f .libs/$(noexecfile) ]; then $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0755 .libs/lib$(noexecfile) $(DESTDIR)$(noexecdir)/$(noexecfile); fi + if [ -f .libs/lib$(noexecfile) ]; then $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0755 .libs/lib$(noexecfile) $(DESTDIR)$(noexecdir)/$(noexecfile); fi install-sudoers: install-dirs test -f $(DESTDIR)$(sudoersdir)/sudoers || \ -- 2.50.1