diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:53:03 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:53:03 +0200 |
commit | ddb59df2a039d1326122e3b0ed1a22fbf1c42a52 (patch) | |
tree | 9bcf593cf809204722ca7df3c9fe4de7aba38ebf /recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch | |
download | meta-virtualization-ddb59df2a039d1326122e3b0ed1a22fbf1c42a52.tar.gz |
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch')
-rw-r--r-- | recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch b/recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch new file mode 100644 index 00000000..fd9ab5b1 --- /dev/null +++ b/recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch | |||
@@ -0,0 +1,42 @@ | |||
1 | From fa785bb1eb9cb0039d77836f4658c7bcccae5999 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexey Firago <alexey_firago@mentor.com> | ||
3 | Date: Wed, 9 Jul 2014 02:01:11 +0400 | ||
4 | Subject: [PATCH] Makefile: Fix hardcoding | ||
5 | |||
6 | Signed-off-by: Alexey Firago <alexey_firago@mentor.com> | ||
7 | --- | ||
8 | Makefile | 18 +++++++++--------- | ||
9 | 1 file changed, 9 insertions(+), 9 deletions(-) | ||
10 | |||
11 | diff --git a/Makefile b/Makefile | ||
12 | index bda808d..4614ae2 100644 | ||
13 | --- a/Makefile | ||
14 | +++ b/Makefile | ||
15 | @@ -23,15 +23,15 @@ export VERSION_SO_MAJOR VERSION_SO_MINOR | ||
16 | # Common definitions | ||
17 | # | ||
18 | |||
19 | -FIND := find | ||
20 | -CSCOPE := cscope | ||
21 | -RM := rm -f | ||
22 | -LD := $(CROSS_COMPILE)ld | ||
23 | -CC := $(CROSS_COMPILE)gcc | ||
24 | -NM := $(CROSS_COMPILE)nm | ||
25 | -SH := bash | ||
26 | -MAKE := make | ||
27 | -OBJCOPY := $(CROSS_COMPILE)objcopy | ||
28 | +FIND ?= find | ||
29 | +CSCOPE ?= cscope | ||
30 | +RM ?= rm -f | ||
31 | +LD ?= $(CROSS_COMPILE)ld | ||
32 | +CC ?= $(CROSS_COMPILE)gcc | ||
33 | +NM ?= $(CROSS_COMPILE)nm | ||
34 | +SH ?= bash | ||
35 | +MAKE ?= make | ||
36 | +OBJCOPY ?= $(CROSS_COMPILE)objcopy | ||
37 | |||
38 | CFLAGS += $(USERCFLAGS) | ||
39 | |||
40 | -- | ||
41 | 1.9.1 | ||
42 | |||