From bad9f48afca958101f9c32added1c1336fb11a1b Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Fri, 14 Dec 2018 17:49:43 -0700
Subject: [PATCH] Fix missing path in strip

---
 recipes/llvm/recipe.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/llvm/recipe.sh b/recipes/llvm/recipe.sh
index eaa90b0c2..a035edf2a 100644
--- a/recipes/llvm/recipe.sh
+++ b/recipes/llvm/recipe.sh
@@ -75,6 +75,6 @@ function recipe_clean {
 function recipe_stage {
     dest="$(realpath $1)"
     make DESTDIR="$dest" install
-    find "$dest"/{bin,libexec} -exec $STRIP {} ';' 2> /dev/null
+    find "$dest"/bin -exec $STRIP {} ';' 2> /dev/null
     skip=1
 }
-- 
GitLab