diff options
| author | Anton Gerasimov <anton@advancedtelematic.com> | 2016-10-28 14:08:40 +0200 |
|---|---|---|
| committer | Anton Gerasimov <anton@advancedtelematic.com> | 2016-10-31 18:21:26 +0100 |
| commit | e42ce3ea63bcf488c743654e983ea018664dda06 (patch) | |
| tree | 090c4ebd999a10332d8213cbdf7cd532d1522e40 /recipes-support/lshw/files/cross-compile.patch | |
| parent | 0939263a7c543e4d2bd667245ce257c2a6d6b9af (diff) | |
| download | meta-updater-e42ce3ea63bcf488c743654e983ea018664dda06.tar.gz | |
Update rvi-sota-client
Change-Id: I1d5ceb776427298d46ab26dab2c822041dff00e0
Signed-off-by: Anton Gerasimov <anton@advancedtelematic.com>
Diffstat (limited to 'recipes-support/lshw/files/cross-compile.patch')
| -rw-r--r-- | recipes-support/lshw/files/cross-compile.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes-support/lshw/files/cross-compile.patch b/recipes-support/lshw/files/cross-compile.patch new file mode 100644 index 0000000..221b7e5 --- /dev/null +++ b/recipes-support/lshw/files/cross-compile.patch | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | --- | ||
| 2 | src/Makefile | 2 +- | ||
| 3 | src/core/Makefile | 2 +- | ||
| 4 | src/gui/Makefile | 4 ++-- | ||
| 5 | 3 files changed, 4 insertions(+), 4 deletions(-) | ||
| 6 | |||
| 7 | --- a/src/Makefile | ||
| 8 | +++ b/src/Makefile | ||
| 9 | @@ -18,7 +18,7 @@ export MANDIR | ||
| 10 | export DATADIR | ||
| 11 | export SQLITE | ||
| 12 | |||
| 13 | -CXX?=c++ | ||
| 14 | +CXX?=$(CROSS_COMPILE)c++ | ||
| 15 | INCLUDES=-I./core/ | ||
| 16 | DEFINES=-DPREFIX=\"$(PREFIX)\" -DSBINDIR=\"$(SBINDIR)\" -DMANDIR=\"$(MANDIR)\" -DDATADIR=\"$(DATADIR)\" | ||
| 17 | CXXFLAGS=-g -Wall -g $(INCLUDES) $(DEFINES) $(RPM_OPT_FLAGS) | ||
| 18 | --- a/src/core/Makefile | ||
| 19 | +++ b/src/core/Makefile | ||
| 20 | @@ -1,6 +1,6 @@ | ||
| 21 | PACKAGENAME?=lshw | ||
| 22 | |||
| 23 | -CXX=c++ | ||
| 24 | +CXX?=$(CROSS_COMPILE)c++ | ||
| 25 | INCLUDES= | ||
| 26 | DEFINES=-DPREFIX=\"$(PREFIX)\" -DSBINDIR=\"$(SBINDIR)\" -DMANDIR=\"$(MANDIR)\" -DDATADIR=\"$(DATADIR)\" | ||
| 27 | CXXFLAGS?=-g -Wall $(INCLUDES) $(DEFINES) $(RPM_OPT_FLAGS) | ||
| 28 | --- a/src/gui/Makefile | ||
| 29 | +++ b/src/gui/Makefile | ||
| 30 | @@ -1,7 +1,7 @@ | ||
| 31 | PACKAGENAME?=lshw | ||
| 32 | |||
| 33 | -CXX?=c++ | ||
| 34 | -CC?=cc | ||
| 35 | +CXX?=$(CROSS_COMPILE)c++ | ||
| 36 | +CC?=$(CROSS_COMPILE)cc | ||
| 37 | STRIP?=strip | ||
| 38 | OBJCOPY?=objcopy | ||
| 39 | |||
