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_5~1^2~187 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28db1fbbed515e04a429ee2aa32ea5ef2003d782;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. --- diff --git a/common/Makefile.in b/common/Makefile.in index 695febec7..6a1517770 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@