Skip to content
Snippets Groups Projects
Verified Commit cb6e3290 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Recipe cleanups

parent e5b2d755
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,6 @@ function recipe_clean { ...@@ -31,6 +31,6 @@ function recipe_clean {
function recipe_stage { function recipe_stage {
dest="$(realpath $1)" dest="$(realpath $1)"
make DESTDIR="$dest" install make DESTDIR="$dest" install
ln -s "dash" "$1/bin/sh" ln -s "dash" "$dest/bin/sh"
skip=1 skip=1
} }
...@@ -31,7 +31,7 @@ function recipe_clean { ...@@ -31,7 +31,7 @@ function recipe_clean {
function recipe_stage { function recipe_stage {
dest="$(realpath $1)" dest="$(realpath $1)"
make DESTDIR="$dest" install make DESTDIR="$dest" install
${HOST}-strip "$1"/bin/* ${HOST}-strip "$dest"/bin/*
rm -rf "$1"/{lib,share} rm -rf "$dest"/{lib,share}
skip=1 skip=1
} }
...@@ -26,7 +26,8 @@ function recipe_build { ...@@ -26,7 +26,8 @@ function recipe_build {
--enable-fcmp=cli \ --enable-fcmp=cli \
--with-sdl-prefix="$sysroot" \ --with-sdl-prefix="$sysroot" \
ac_cv_lib_SDL_image_IMG_Load=yes \ ac_cv_lib_SDL_image_IMG_Load=yes \
ac_cv_lib_SDL_ttf_TTF_OpenFont=yes ac_cv_lib_SDL_ttf_TTF_OpenFont=yes \
ac_cv_lib_SDL_gfx_rotozoomSurface=yes
make -j"$(nproc)" V=1 make -j"$(nproc)" V=1
skip=1 skip=1
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment