Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | From b0c0e6d90bd99a699701c9542640adb218f5d536 Mon Sep 17 00:00:00 2001 |
| 2 | From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 3 | Date: Mon, 10 Jul 2017 16:51:13 +0300 |
| 4 | Subject: [PATCH] libXt: util: don't link makestrs with target cflags |
| 5 | |
| 6 | The line: AM_CFLAGS = $(XT_CFLAGS) |
| 7 | in util/Makefile.am is wrong because it adds target cflags to the |
| 8 | compilation of makestrs, which is built for the build machine, which |
| 9 | leads to build failures when cross-compiling. |
| 10 | |
| 11 | Upstream-Status: Pending |
| 12 | |
| 13 | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 14 | Signed-off-by: Maxin B. John <maxin.john@intel.com> |
| 15 | --- |
| 16 | util/Makefile.am | 1 - |
| 17 | 1 file changed, 1 deletion(-) |
| 18 | |
| 19 | diff --git a/util/Makefile.am b/util/Makefile.am |
| 20 | index 800b35b..f2dd1f9 100644 |
| 21 | --- a/util/Makefile.am |
| 22 | +++ b/util/Makefile.am |
| 23 | @@ -11,7 +11,6 @@ EXTRA_DIST = \ |
| 24 | StrDefs.ht \ |
| 25 | string.list |
| 26 | |
| 27 | -AM_CFLAGS = $(XT_CFLAGS) |
| 28 | makestrs_SOURCES = makestrs.c |
| 29 | |
| 30 | |
| 31 | -- |
| 32 | 2.4.0 |
| 33 | |