From f1b9327d9b1c8d835eed22003f892e45a8843afa Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Tue, 16 Jul 2019 17:49:11 -0600
Subject: [PATCH] Remove libtool files from cairo and pixman

---
 recipes/cairo/recipe.sh  | 4 ++--
 recipes/pixman/recipe.sh | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes/cairo/recipe.sh b/recipes/cairo/recipe.sh
index 2d3285570..d7c5b7300 100755
--- a/recipes/cairo/recipe.sh
+++ b/recipes/cairo/recipe.sh
@@ -21,7 +21,7 @@ function recipe_build {
 	export LDFLAGS="-L$sysroot/lib"
 	export CPPFLAGS="-I$sysroot/include"
 	CFLAGS="-DCAIRO_NO_MUTEX=1" ./configure --build=${BUILD} --host=${HOST} --prefix=/ --enable-xlib=no --enable-script=no --enable-interpreter=no
-	make
+	make -j"$(nproc)"
     	skip=1
 }
 
@@ -36,8 +36,8 @@ function recipe_clean {
 }
 
 function recipe_stage {
-	echo "skipping stage"
 	dest="$(realpath $1)"
 	make DESTDIR="$dest" install
+	rm -f "$dest/lib/"*.la
 	skip=1
 }
diff --git a/recipes/pixman/recipe.sh b/recipes/pixman/recipe.sh
index 708a2f711..593380561 100755
--- a/recipes/pixman/recipe.sh
+++ b/recipes/pixman/recipe.sh
@@ -34,8 +34,8 @@ function recipe_clean {
 }
 
 function recipe_stage {
-	echo "skipping stage"
 	dest="$(realpath $1)"
 	make DESTDIR="$dest" install
+	rm -f "$dest/lib/"*.la
 	skip=1
 }
-- 
GitLab