diff options
-rw-r--r-- | src/opkbuild | 2 |
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}" |