From 5ca6f36612935489102fbf75d1d8a9fd9c87b205 Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Fri, 10 Mar 2017 15:00:37 +0100 Subject: bin/{{s,}build-deb-package,build-{nsis,rpm}-package}: do not *ever* make local copies of git repositories with hardlinks in them. To start with, that defeats the purpose of such a copy in the first place and secondly has been failing badly for Debian packages since the dawn of time. We want a nice, full, deep copy that can be changed without harming other builds. --- bin/build-rpm-package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/build-rpm-package') diff --git a/bin/build-rpm-package b/bin/build-rpm-package index a99a62f..65ba67c 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -515,7 +515,7 @@ prepare_workspace() { git clean -df else cd "$(dirname "${PROJECT_DIR}")" - git clone "git://${GIT_HOSTNAME}/${PROJECT_PATH}.git" + git clone --no-hardlinks --no-local "git://${GIT_HOSTNAME}/${PROJECT_PATH}.git" cd "${PROJECT}" git checkout --force "${CHECKOUT}" || git checkout --force -b "${CHECKOUT}" git fetch origin upstream:upstream @@ -603,7 +603,7 @@ build_packages() { chmod -Rf -- 2770 "${TEMP_DIR}" cd "$PROJECT_DIR" - git clone "${PROJECT_DIR}" "${TEMP_DIR}/${PROJECT}/" + git clone --no-hardlinks --no-local "${PROJECT_DIR}" "${TEMP_DIR}/${PROJECT}/" cd "${TEMP_DIR}" GITREV="$(cd "${PROJECT}" && gitrevno && cd - 1>/dev/null)" -- cgit v1.2.3