1From 653c39b0b30b2a329db5041e558cfc97c03d6bfb Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 17 Feb 2021 19:18:16 -0800
4Subject: [PATCH] do not build examples
5
6examples need ucontext and some architectures on musl do not have it
7implemented e.g. riscv
8
9Upstream-Status: Inappropriate [Arch-Specific]
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 Makefile | 1 -
14 1 file changed, 1 deletion(-)
15
16diff --git a/Makefile b/Makefile
17index 5d9c4dc..53e1615 100644
18--- a/Makefile
19+++ b/Makefile
20@@ -11,7 +11,6 @@ default: all
21 all:
22 	@$(MAKE) -C src
23 	@$(MAKE) -C test
24-	@$(MAKE) -C examples
25
26 .PHONY: all install default clean test
27 .PHONY: FORCE cscope
28--
292.31.1
30
31