diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-07 05:53:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-07 05:53:20 +0000 |
commit | f86f7f4036117beea04a6f159ffda8c0105ed74e (patch) | |
tree | c0ca88643101beab06b0df6eaacf6506d4c2d87c /debian/rules | |
parent | Adding debian version 1.75.0+dfsg1-3. (diff) | |
download | rustc-f86f7f4036117beea04a6f159ffda8c0105ed74e.tar.xz rustc-f86f7f4036117beea04a6f159ffda8c0105ed74e.zip |
Adding debian version 1.75.0+dfsg1-4.debian/1.75.0+dfsg1-4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 0b0819074..80141146b 100755 --- a/debian/rules +++ b/debian/rules @@ -236,7 +236,7 @@ debian/config.toml: debian/config.toml.in debian/rules then sed -i -e '/^rustc = /d' -e '/^cargo = /d' "$@"; fi # Work around low-memory (32-bit) architectures: https://github.com/rust-lang/rust/issues/45854 # otherwise they fail to mmap rustc_driver when building rustdoc in >1.60 - if [ $(DEB_BUILD_ARCH_BITS) == "32" ]; then \ + if [ $(DEB_BUILD_ARCH_BITS) = "32" ]; then \ sed -i -e 's/^debuginfo-level = .*/debuginfo-level = 0/g' "$@"; \ fi |