From 5efe865235cf0de68697c325dabc6672aa54c770 Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Tue, 16 Jul 2019 22:12:43 -0600
Subject: [PATCH] Strip python3.7m as well, add -static flag

---
 recipes/python/recipe.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/recipes/python/recipe.sh b/recipes/python/recipe.sh
index 10357bbec..7a024f103 100644
--- a/recipes/python/recipe.sh
+++ b/recipes/python/recipe.sh
@@ -15,6 +15,7 @@ function recipe_update {
 }
 
 function recipe_build {
+    export LDFLAGS="-static"
     cp ../config.site ./
     ./configure \
         --build=${BUILD} \
@@ -42,6 +43,6 @@ function recipe_clean {
 function recipe_stage {
     dest="$(realpath $1)"
     make DESTDIR="$dest" install -j"$(nproc)"
-    "$STRIP" "$dest/bin/python3.7"
+    "$STRIP" "$dest/bin/python3.7" "$dest/bin/python3.7m"
     skip=1
 }
-- 
GitLab