mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
When pam is enabled an extra plugin is build and it references an incorrect directory when separate build directories are used. This patch corrects the issue. (From OE-Core rev: a6e91db198ae5b77986de25331631d894c7b97d1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
555 B
Diff
20 lines
555 B
Diff
Fix builds in the case of seprate source from the build directory.
|
|
|
|
RP 2013/4/17
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Index: pam-ck-connector/Makefile.am
|
|
===================================================================
|
|
--- consolekit/pam-ck-connector.orig/Makefile.am 2010-09-03 13:54:31.000000000 +0000
|
|
+++ consolekit/pam-ck-connector/Makefile.am 2013-04-17 09:06:49.093524918 +0000
|
|
@@ -4,7 +4,7 @@
|
|
|
|
INCLUDES = \
|
|
$(LIBDBUS_CFLAGS) \
|
|
- -I$(top_builddir)/libck-connector \
|
|
+ -I$(top_srcdir)/libck-connector \
|
|
$(NULL)
|
|
|
|
pamlibdir = $(PAM_MODULE_DIR)
|