summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch')
-rw-r--r--meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch19
1 files changed, 5 insertions, 14 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch
index a8fcfc0f73..e23be32599 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools/0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch
@@ -1,4 +1,4 @@
1From eecc48ecad359cd4fab650ce49cfe57e99d1859d Mon Sep 17 00:00:00 2001 1From c384fa875c5128009ac8b6ba11a54a6bd4de575a Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 17 May 2018 12:21:31 +0300 3Date: Thu, 17 May 2018 12:21:31 +0300
4Subject: [PATCH] Add LDFLAGS when building libbtrfsutil.so and python 4Subject: [PATCH] Add LDFLAGS when building libbtrfsutil.so and python
@@ -8,14 +8,14 @@ Upstream-Status: Pending
8Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> 8Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
9 9
10--- 10---
11 Makefile | 4 ++-- 11 Makefile | 2 +-
12 1 file changed, 2 insertions(+), 2 deletions(-) 12 1 file changed, 1 insertion(+), 1 deletion(-)
13 13
14diff --git a/Makefile b/Makefile 14diff --git a/Makefile b/Makefile
15index 10f0e3b0..1697794c 100644 15index e25e256f..6df00186 100644
16--- a/Makefile 16--- a/Makefile
17+++ b/Makefile 17+++ b/Makefile
18@@ -402,7 +402,7 @@ libbtrfsutil/%.o: libbtrfsutil/%.c 18@@ -424,7 +424,7 @@ libbtrfsutil/%.o: libbtrfsutil/%.c
19 19
20 libbtrfsutil.so.$(libbtrfsutil_version): $(libbtrfsutil_objects) 20 libbtrfsutil.so.$(libbtrfsutil_version): $(libbtrfsutil_objects)
21 @echo " [LD] $@" 21 @echo " [LD] $@"
@@ -24,12 +24,3 @@ index 10f0e3b0..1697794c 100644
24 -shared -Wl,-soname,libbtrfsutil.so.$(libbtrfsutil_major) -o $@ 24 -shared -Wl,-soname,libbtrfsutil.so.$(libbtrfsutil_major) -o $@
25 25
26 libbtrfsutil.a: $(libbtrfsutil_objects) 26 libbtrfsutil.a: $(libbtrfsutil_objects)
27@@ -417,7 +417,7 @@ ifeq ($(PYTHON_BINDINGS),1)
28 libbtrfsutil_python: libbtrfsutil.so.$(libbtrfsutil_major) libbtrfsutil.so libbtrfsutil/btrfsutil.h
29 @echo " [PY] libbtrfsutil"
30 $(Q)cd libbtrfsutil/python; \
31- CFLAGS= LDFLAGS= $(PYTHON) setup.py $(SETUP_PY_Q) build_ext -i build
32+ CFLAGS= $(PYTHON) setup.py $(SETUP_PY_Q) build_ext -i build
33
34 .PHONY: libbtrfsutil_python
35 endif