summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/uftrace/uftrace/0001-Makefile-Add-LDFLAGS-in-export.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/uftrace/uftrace/0001-Makefile-Add-LDFLAGS-in-export.patch')
-rw-r--r--meta-oe/recipes-devtools/uftrace/uftrace/0001-Makefile-Add-LDFLAGS-in-export.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta-oe/recipes-devtools/uftrace/uftrace/0001-Makefile-Add-LDFLAGS-in-export.patch b/meta-oe/recipes-devtools/uftrace/uftrace/0001-Makefile-Add-LDFLAGS-in-export.patch
deleted file mode 100644
index f665051e9..000000000
--- a/meta-oe/recipes-devtools/uftrace/uftrace/0001-Makefile-Add-LDFLAGS-in-export.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From ec794945475d5792f2ae85afe461e64266613640 Mon Sep 17 00:00:00 2001
2From: Changhyeok Bae <changhyeok.bae@gmail.com>
3Date: Thu, 13 Jul 2017 16:44:52 +0900
4Subject: [PATCH 1/2] Makefile: Add LDFLAGS in export
5
6To use build with musl, need to argp library.
7So need to add LDFLAGS from outside.
8
9Upstream-Status: Accepted
10
11Signed-off-by: <Changhyeok Bae changhyeok.bae@gmail.com>
12---
13 Makefile | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/Makefile b/Makefile
17index 67be2da..0ca649a 100644
18--- a/Makefile
19+++ b/Makefile
20@@ -48,7 +48,7 @@ endif
21 RM = rm -f
22 INSTALL = install
23
24-export ARCH CC AR LD RM srcdir objdir
25+export ARCH CC AR LD RM srcdir objdir LDFLAGS
26
27 COMMON_CFLAGS := -O2 -g -D_GNU_SOURCE $(CFLAGS) $(CPPFLAGS)
28 COMMON_CFLAGS += -iquote $(srcdir) -iquote $(objdir) -iquote $(srcdir)/arch/$(ARCH)
29--
301.9.1
31