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 }