From df4cc3a83c5d6700b6a09ff96cb4a6b1949b1aa9 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Wed, 19 Aug 2009 10:08:14 -0400 Subject: Fix usage of $(builddir) in SSSD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are some old versions of automake that do not define $(builddir) correctly. Since $(builddir) is "Rigorously equal to ‘.’', we'll set it at the top of the Makefile.am files. --- Makefile.am | 3 +++ server/Makefile.am | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/Makefile.am b/Makefile.am index 0ed9c6401..04c22158f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,9 @@ SUBDIRS = replace common server sss_client RPMBUILD ?= $(PWD)/rpmbuild +#Some old versions of automake don't define builddir +builddir ?= . + dist_noinst_DATA = \ sssd.spec.in \ BUILD.txt \ diff --git a/server/Makefile.am b/server/Makefile.am index 6aa6bec7c..d42fa5c9a 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -1,5 +1,9 @@ SUBDIRS = po topdir=. + +# Some old versions of automake don't define builddir +builddir ?= . + sssdlibexecdir = $(libexecdir)/sssd sssdlibdir = $(libdir)/sssd ldblibdir = $(libdir)/ldb -- cgit