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/sbuild-deb-package | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/sbuild-deb-package') diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index a479059..b8a90e0 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -132,7 +132,7 @@ prepare_workspace() { cd ${my_WORKDIR} if [ ! -d ${PROJECT}/.git ]; then - 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}" @@ -221,7 +221,7 @@ build_packages() { chmod 2770 -Rf -- "${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}/${PROJECT}" git checkout "${CHECKOUT}" || git checkout master find "${PROJECT_DIR}/../" -maxdepth 0 -mindepth 0 -type f | grep -qs "${PROJECT}_"*.orig.tar.gz && cp -- "${PROJECT_DIR}/../${PROJECT}_"*.orig.tar.gz .. -- cgit v1.2.3