This is the mail archive of the libffi-discuss@sourceware.org mailing list for the libffi project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Missing variable in AM_MAKEFLAGS


I've been trying to compile libffi (latest cloned from git earlier today)
but hitting a problem with overriding where the library is installed.

This patch fixes the problem with passing an overridden value for
toolexeclibdir to the recursive make call.  It looks like adding the
variable to AM_MAKEFLAGS may have been missed when toolexeclibdir was added.

---
 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile.am b/Makefile.am
index bf0156f..f821df0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -82,6 +82,7 @@ AM_MAKEFLAGS = \
 	"exec_prefix=$(exec_prefix)" \
 	"infodir=$(infodir)" \
 	"libdir=$(libdir)" \
+	"toolexeclibdir=$(toolexeclibdir)" \
 	"mandir=$(mandir)" \
 	"prefix=$(prefix)" \
 	"AR=$(AR)" \
-- 
1.8.1.4


-- 
Stewart Brodie
Senior Software Engineer
Team Leader ANT Galio Browser
Espial UK


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]