summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-01-21 14:52:01 (EST)
committer P. J. McDermott <pjm@nac.net>2012-01-21 14:52:01 (EST)
commit25d49c82ae3cab9779061878dedd2be70d2556f6 (patch)
tree15aa558693c985686a62f1590e9b5b807a716c72 /src
parent5ea4ab3467d2933ff95bada09fc3fdbe05e0077d (diff)
Add "Attempting to build package..." messages.
Diffstat (limited to 'src')
-rw-r--r--src/opkbuild2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/opkbuild b/src/opkbuild
index f180ad8..0b15d5f 100644
--- a/src/opkbuild
+++ b/src/opkbuild
@@ -54,6 +54,7 @@ srcpkg=$(oh_get_field Source)
version=$(oh_get_field Version)
# Build *-src package.
+printf 'opkbuild: Attempting to build package "%s"...\n' "${srcpkg}-src"
printf 'opkbuild: Installing files for package "%s"...\n' "${srcpkg}-src"
mkdir -p ${srcpkg}-src.data/usr/src/${srcpkg}_${version} ||
error "${srcpkg}-src"
@@ -78,6 +79,7 @@ for binpkgdir in ../*.pkg/; do
binpkg=${binpkg%'.pkg/'}
# TODO: Check architecture.
if true; then
+ printf 'opkbuild: Attempting to build package "%s"...\n' "${binpkg}"
# Make installation directory.
# TODO: Maybe this should be an FHS-compliant filesystem hierarchy.
mkdir dest || error "${binpkg}"