Support for patching dependencies + ARM patch for bcrypt.

This commit is contained in:
Maarten Billemont 2014-11-21 09:39:30 -05:00
parent 66f90434b5
commit 372beb2dfc
2 changed files with 6 additions and 6 deletions

View file

@ -66,12 +66,6 @@
# readwhile command [args] # readwhile command [args]
# Outputs the characters typed by the user into the terminal's input buffer while running the given command. # Outputs the characters typed by the user into the terminal's input buffer while running the given command.
# #
# pushqueue element ...
# Pushes the given arguments as elements onto the queue.
#
# popqueue
# Pops one element off the queue.
#
# log [format] [arguments...] # log [format] [arguments...]
# Log an event at a certain importance level. # Log an event at a certain importance level.
# The event is expressed as a printf(1) format argument. # The event is expressed as a printf(1) format argument.

6
build
View file

@ -133,6 +133,12 @@ fetchSource() (
echo >&2 "error: into: $PWD" echo >&2 "error: into: $PWD"
exit 1 exit 1
fi fi
for patch in "${patches[@]}"; do
echo
echo "Patching: ${PWD##*/}, for $patch..."
patch -p0 < ../"${PWD##*/}-$patch.patch"
done
) )
depend() { depend() {