diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-08-24 12:54:30 +0200 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-08-24 12:54:30 +0200 |
commit | 54007ea6eeebd09573bccd4a5fcf48fa3750f928 (patch) | |
tree | 34c14f6f24147815ecaa7b54e7f628d542e08257 | |
parent | 14fe23a19fc7f8734e9ef6ed0126f956dcbf8104 (diff) | |
download | midipix_build-54007ea6eeebd09573bccd4a5fcf48fa3750f928.tar.bz2 midipix_build-54007ea6eeebd09573bccd4a5fcf48fa3750f928.tar.xz |
subr/pkg_install.subr:pkg_install(): remove useless date(1) call.
-rw-r--r-- | subr/pkg_install.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg_install.subr b/subr/pkg_install.subr index b965a9ad..e6e2497e 100644 --- a/subr/pkg_install.subr +++ b/subr/pkg_install.subr @@ -9,7 +9,7 @@ pkg_install() { else for _destdir in "${PKG_DESTDIR}:${PKG_PREFIX}" "${PKG_DESTDIR_HOST}:${PREFIX}"; do rtl_lassign "_destdir _destdir_prefix" ":" "${_destdir}"; if [ -e "${_destdir}" ]; then - (set +o errexit -o noglob; rtl_flock_acquire 4 || exit "${?}"; date; + (set +o errexit -o noglob; rtl_flock_acquire 4 || exit "${?}"; trap "rm -f \"${BUILD_WORKDIR}/install.lock\"" EXIT; if ! tar -C "${_destdir}" -cpf - . | tar -C "${_destdir_prefix}" --overwrite -xpf -; then exit 1; |