diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2013-01-03 10:16:55 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-06-07 20:58:16 -0700 |
commit | 0bf255ce5f2aeacece0b685996491729f804fe94 (patch) | |
tree | a7e0e125c19683c31da58f17ef858bfc88abe63d /util/Makefile.am | |
parent | 02fd80afd5d2416301e5166e202ff859902c7987 (diff) |
Fix cross-compilation
When cross-compiling against a sysroot for instance, a --sysroot option
is typically passed via the CPPFLAGS variable. This can cause the build
to break in the util subdirectory which requires the CPPFLAGS to be set
for the build system.
Solve this by using the value of CPPFLAGS_FOR_BUILD for CPPFLAGS in the
util subdirectory. Cross-compile setups can override the variable when
calling the configure script.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'util/Makefile.am')
-rw-r--r-- | util/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/Makefile.am b/util/Makefile.am index dedfa6b..800b35b 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -1,6 +1,7 @@ noinst_PROGRAMS = makestrs CC = @CC_FOR_BUILD@ +CPPFLAGS = @CPPFLAGS_FOR_BUILD@ CFLAGS = @CFLAGS_FOR_BUILD@ LDFLAGS = @LDFLAGS_FOR_BUILD@ |