diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-08-19 10:08:14 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-08-20 12:27:13 -0400 |
commit | df4cc3a83c5d6700b6a09ff96cb4a6b1949b1aa9 (patch) | |
tree | 22ca90e3f9ff3d3cc98dc8611df426f728376019 /server/Makefile.am | |
parent | f9809a1a289165252fd1400b000b69a48b325336 (diff) | |
download | sssd-df4cc3a83c5d6700b6a09ff96cb4a6b1949b1aa9.tar.gz sssd-df4cc3a83c5d6700b6a09ff96cb4a6b1949b1aa9.tar.xz sssd-df4cc3a83c5d6700b6a09ff96cb4a6b1949b1aa9.zip |
Fix usage of $(builddir) in SSSD
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.
Diffstat (limited to 'server/Makefile.am')
-rw-r--r-- | server/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
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 |