summaryrefslogtreecommitdiffstats
path: root/bootstrap-prepare.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-31 19:42:08 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-31 19:42:08 (EDT)
commite0905479426c8aeb0833bf4a085f2d56367998d7 (patch)
tree8a97d03564caae23faa4b30514722dca8eb9808c /bootstrap-prepare.sh
parent067fd6c2433ebce6c4089aaea5305a385034eb99 (diff)
bootstrap-prepare.sh: Move log command.
Diffstat (limited to 'bootstrap-prepare.sh')
-rwxr-xr-xbootstrap-prepare.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap-prepare.sh b/bootstrap-prepare.sh
index 858d6a1..8042543 100755
--- a/bootstrap-prepare.sh
+++ b/bootstrap-prepare.sh
@@ -94,8 +94,8 @@ patch_packages()
cd pkg
for dir in */; do
- log 'Patching package %s...' "${dir%/}"
if [ -d "${SCRIPT_DIR}/patches/${dir}" ]; then
+ log 'Patching package %s...' "${dir%/}"
for patch in "${SCRIPT_DIR}/patches/${dir}"*; do
patch -N -p 1 -u -d "${dir}" -i "${patch}"
done