Skip to content

Commit 4845788

Browse files
committed
Fix for debian/sid build issues, backported from v4
Create a dummy debian/control with an old timestamp - so that make, as called by debian/rules, will always recreate it correctly.
1 parent e7ae5f8 commit 4845788

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

scripts/docker/dists/debiansid/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ RUN [ -z "$release" ] || git checkout ${release} ; \
4141
# Install build dependencies
4242
#
4343
RUN if [ -e ./debian/control.in ]; then \
44+
touch -t 202001010000 debian/control; \
4445
debian/rules debian/control; \
4546
fi; \
4647
echo 'y' | mk-build-deps -irt'apt-get -yV' debian/control

scripts/docker/m4/Dockerfile.deb.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ RUN [ -z "$release" ] || git checkout ${release} ; \
3636
# Install build dependencies
3737
#
3838
RUN if [ -e ./debian/control.in ]; then \
39+
touch -t 202001010000 debian/control; \
3940
debian/rules debian/control; \
4041
fi; \
4142
echo 'y' | mk-build-deps -irt'apt-get -yV' debian/control

0 commit comments

Comments
 (0)