Skip to content
Snippets Groups Projects
Commit ba949433 authored by Jeremy Soller's avatar Jeremy Soller Committed by GitHub
Browse files

Merge pull request #16 from ids1024/patch

Handle patches in prepare
parents e87d8c0d 649559bf
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,11 @@ function op { ...@@ -88,6 +88,11 @@ function op {
prepare) prepare)
rm -rf build rm -rf build
cp -r source build cp -r source build
for patch in *.patch
do
patch -p1 -d build < "$patch"
done
;; ;;
unprepare) unprepare)
rm -rf build rm -rf build
......
...@@ -26,7 +26,6 @@ function recipe_update { ...@@ -26,7 +26,6 @@ function recipe_update {
} }
function recipe_build { function recipe_build {
patch -p1 < ../make.patch
./configure --host=${HOST} --prefix=/ CFLAGS=-DPOSIX --without-guile ./configure --host=${HOST} --prefix=/ CFLAGS=-DPOSIX --without-guile
make make
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