diff options
author | Mattia Rizzolo <mattia@debian.org> | 2017-02-06 12:23:06 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-02-06 12:35:05 +0100 |
commit | 221d13910efff10f03ffad1b65d961b8fe51f688 (patch) | |
tree | 9932e840347da856a20eafc7a2feca96c9c38752 /bin | |
parent | 4d419a45b6e4e98b06d311fbe207180e04f1a843 (diff) | |
download | jenkins.debian.net-221d13910efff10f03ffad1b65d961b8fe51f688.tar.xz |
reproducible debian: temporary disable build subdir name variation
pbuilder 0.228 removed an undefined behaviour this feature was relying
on. 0.228.4 will instead provide an (undocumented) interface to
configure this value.
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 16888b29..50d2934b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -684,7 +684,7 @@ EOF # build path is not yet varied on testing if [ "${SUITE}" != "testing" ]; then local src_dir_name="$(perl -mDpkg::Source::Package -e '$_ = Dpkg::Source::Package->new(filename => $ARGV[0])->get_basename; s/_/-/g; print' -- "${SRCPACKAGE}_${EVERSION}.dsc")" - echo "BUILDDIR=/build/$src_dir_name" >> "$TMPCFG" + echo "BUILDDIR=/build/2nd" >> "$TMPCFG" echo "BUILDSUBDIR=2nd" >> "$TMPCFG" else echo "BUILDDIR=/build" >> "$TMPCFG" |