mirror of
https://gitlab.com/spectre.app/cli.git
synced 2024-11-01 02:41:44 +01:00
Support for patching dependencies + ARM patch for bcrypt.
This commit is contained in:
parent
66f90434b5
commit
372beb2dfc
2 changed files with 6 additions and 6 deletions
6
bashlib
6
bashlib
|
@ -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
6
build
|
@ -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() {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue