summaryrefslogtreecommitdiffstats
path: root/recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-08 22:53:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-08 22:53:03 +0200
commitddb59df2a039d1326122e3b0ed1a22fbf1c42a52 (patch)
tree9bcf593cf809204722ca7df3c9fe4de7aba38ebf /recipes-containers/criu/criu-1.2/0001-Makefile-Fix-hardcoding.patch
downloadmeta-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.patch42
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 @@
1From fa785bb1eb9cb0039d77836f4658c7bcccae5999 Mon Sep 17 00:00:00 2001
2From: Alexey Firago <alexey_firago@mentor.com>
3Date: Wed, 9 Jul 2014 02:01:11 +0400
4Subject: [PATCH] Makefile: Fix hardcoding
5
6Signed-off-by: Alexey Firago <alexey_firago@mentor.com>
7---
8 Makefile | 18 +++++++++---------
9 1 file changed, 9 insertions(+), 9 deletions(-)
10
11diff --git a/Makefile b/Makefile
12index 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--
411.9.1
42