aboutsummaryrefslogtreecommitdiff
path: root/libexec/build-make-prep
diff options
context:
space:
mode:
authorMark Ferrell <major@homeonderanged.org>2014-07-22 14:39:06 -0700
committerMark Ferrell <major@homeonderanged.org>2014-07-22 14:39:06 -0700
commit2f2990bacba3fdf2535f85c88dd8b6b0506e3b99 (patch)
tree41fc3ee8f1bc4ac0210877d51c9b80cb970df6d2 /libexec/build-make-prep
parent725e3f949942d11a8ab39c6be32e10e011ade677 (diff)
Fix missing quote in log message
Diffstat (limited to 'libexec/build-make-prep')
-rwxr-xr-xlibexec/build-make-prep2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/build-make-prep b/libexec/build-make-prep
index 5150b0d..572343d 100755
--- a/libexec/build-make-prep
+++ b/libexec/build-make-prep
@@ -36,7 +36,7 @@ build_make_prep()
SOURCE_DIR="${BUILDER_PKGDIR}/${CATEGORY}/${NAME}/source"
if test -e "${SOURCE_DIR}"; then
- echo "prepping ${1} from source: '${SOURCE_DIR}"
+ echo "prepping ${1} from source: '${SOURCE_DIR}'"
if [ "$(command -v rsync)" ]; then
if ! rsync -rav --delete "${SOURCE_DIR}/" "${S}"; then
die "failed to sync source to '${S}'"