From: Todd C. Miller Date: Mon, 27 Feb 2012 18:28:15 +0000 (-0500) Subject: We need sysconfdir in compat/Makfile to get the proper sudo.conf X-Git-Tag: SUDO_1_8_4p2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31de11ee81300d479a8d7725f453b890b92f0845;p=sudo We need sysconfdir in compat/Makfile to get the proper sudo.conf path. Add standard prefix and foodir expansion in all Makefiles to avoid this problem in the future. --HG-- branch : 1.8 --- diff --git a/common/Makefile.in b/common/Makefile.in index 245616c66..7dd7c9d11 100644 --- a/common/Makefile.in +++ b/common/Makefile.in @@ -25,6 +25,16 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ incdir = $(top_srcdir)/include +# Where to install things... +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +sbindir = @sbindir@ +sysconfdir = @sysconfdir@ +libexecdir = @libexecdir@ +datarootdir = @datarootdir@ +localstatedir = @localstatedir@ + # Compiler & tools to use CC = @CC@ LIBTOOL = @LIBTOOL@ diff --git a/compat/Makefile.in b/compat/Makefile.in index 0ea91e4a0..6b6630e67 100644 --- a/compat/Makefile.in +++ b/compat/Makefile.in @@ -25,6 +25,16 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ incdir = $(top_srcdir)/include +# Where to install things... +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +sbindir = @sbindir@ +sysconfdir = @sysconfdir@ +libexecdir = @libexecdir@ +datarootdir = @datarootdir@ +localstatedir = @localstatedir@ + # Compiler & tools to use CC = @CC@ LIBTOOL = @LIBTOOL@ diff --git a/doc/Makefile.in b/doc/Makefile.in index 3b99698cb..e334fba2c 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -32,6 +32,11 @@ INSTALL = $(SHELL) $(top_srcdir)/install-sh -c # Where to install things... prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +sbindir = @sbindir@ +sysconfdir = @sysconfdir@ +libexecdir = @libexecdir@ datarootdir = @datarootdir@ localstatedir = @localstatedir@ mandir = @mandir@ diff --git a/include/Makefile.in b/include/Makefile.in index c57657652..9dbe4c462 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -29,6 +29,11 @@ INSTALL = $(SHELL) $(top_srcdir)/install-sh -c # Where to install things... prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +sbindir = @sbindir@ +sysconfdir = @sysconfdir@ +libexecdir = @libexecdir@ datarootdir = @datarootdir@ localstatedir = @localstatedir@