From 28db1fbbed515e04a429ee2aa32ea5ef2003d782 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 27 Feb 2012 13:28:15 -0500 Subject: [PATCH] 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. --- common/Makefile.in | 10 ++++++++++ compat/Makefile.in | 10 ++++++++++ doc/Makefile.in | 5 +++++ include/Makefile.in | 5 +++++ 4 files changed, 30 insertions(+) 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@ -- 2.40.0