diff options
author | Mark Ferrell <major@homeonderanged.org> | 2012-04-24 12:17:34 -0500 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2012-04-24 12:17:34 -0500 |
commit | 726de5606cd41a9a5dd25c70263dac53368ea6a0 (patch) | |
tree | aee1e9088a4672b3c64b86f30cacc8b0c78dbc4e | |
parent | 4cd905f10396cfea62900ac0d7800c9e3c65eacf (diff) |
Fix binpkg file timestamp
* A packages binpkg file has a timestamp that is older than the
containing tarball. After extracging a packages binpkg tarball we
need to touch the /var/db/binpkg marker so that Make is happy.
-rwxr-xr-x | scripts/builder/build-install | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/builder/build-install b/scripts/builder/build-install index 9946671..9c45c01 100755 --- a/scripts/builder/build-install +++ b/scripts/builder/build-install @@ -20,5 +20,6 @@ esac cd "${SYSROOT}" ${ARCHIVE_DECOMPRESSOR} "${BUILDER_ATFDIR}/${CATEGORY}/${NAME}-${VERSION}.${ARCHIVE_FORMAT}" | tar x +touch "${SYSROOT}/var/db/binpkgs/${CATEGORY}/${NAME}" # vim: filetype=sh |