From 9924dde5d08125e553e994548ee0ef779bc17475 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 30 Aug 2010 09:06:04 -0400 Subject: [PATCH] Install sudoers file from the build dir not hte src dir. --HG-- branch : 1.7 --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index c296c9c02..406b88c38 100644 --- a/Makefile.in +++ b/Makefile.in @@ -500,7 +500,7 @@ install-sudoers: install-dirs $(DESTDIR)$(sudoersdir)/sudoers.d test -f $(DESTDIR)$(sudoersdir)/sudoers || \ $(INSTALL) -O $(sudoers_uid) -G $(sudoers_gid) -M $(sudoers_mode) \ - $(srcdir)/sudoers $(DESTDIR)$(sudoersdir)/sudoers + sudoers $(DESTDIR)$(sudoersdir)/sudoers install-doc: install-dirs ChangeLog (cd $(srcdir) && for f in ChangeLog HISTORY LICENSE NEWS README TROUBLESHOOTING UPGRADE sample.*; do $(INSTALL) -O $(install_uid) -G $(install_gid) -M 0444 $$f $(DESTDIR)$(docdir); done) -- 2.40.0