From: Todd C. Miller Date: Mon, 30 Aug 2010 13:06:04 +0000 (-0400) Subject: Install sudoers file from the build dir not hte src dir. X-Git-Tag: SUDO_1_7_5~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9924dde5d08125e553e994548ee0ef779bc17475;p=sudo Install sudoers file from the build dir not hte src dir. --HG-- branch : 1.7 --- 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)