diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2019-05-03 08:06:00 +0200 |
---|---|---|
committer | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2019-05-03 08:06:00 +0200 |
commit | 0b80bc9904c8d553c760651daca0c964df052c8b (patch) | |
tree | dea11441d7b2c9afc96ed5527c0b9312ea5560cf /util | |
parent | 870954db9312d007a3c7620763e858cc0c03f753 (diff) |
libXt: util: don't link makestrs with target cflags
The line:
AM_CFLAGS = $(XT_CFLAGS)
in util/Makefile.am is wrong because it adds target cflags to the
compilation of makestrs, which is built for the build machine, which
leads to build failures when cross-compiling.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Retrieved from:
https://git.buildroot.net/buildroot/tree/package/x11r7/xlib_libXt/0001-util-don-t-link-makestrs-with-target-cflags.patch]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/util/Makefile.am b/util/Makefile.am index 800b35b..f2dd1f9 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -11,7 +11,6 @@ EXTRA_DIST = \ StrDefs.ht \ string.list -AM_CFLAGS = $(XT_CFLAGS) makestrs_SOURCES = makestrs.c |