aboutsummaryrefslogtreecommitdiffstats
path: root/community/cloud-utils/05-set-sfdisk-lang-2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/cloud-utils/05-set-sfdisk-lang-2.patch')
-rw-r--r--community/cloud-utils/05-set-sfdisk-lang-2.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/community/cloud-utils/05-set-sfdisk-lang-2.patch b/community/cloud-utils/05-set-sfdisk-lang-2.patch
deleted file mode 100644
index 8d6af6c19f1..00000000000
--- a/community/cloud-utils/05-set-sfdisk-lang-2.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Upstream patch #30 from git master. Will be present in next release.
-
-growpart: adding LANG=C before the command sfdisk --version
-
-Original bug description:
-https://bugs.launchpad.net/cloud-utils/+bug/1928167
-
----
-
-diff -aur a/bin/growpart b/bin/growpart
---- a/bin/growpart
-+++ b/bin/growpart
-@@ -230,7 +230,7 @@
- return 0
- }
- # expected output: sfdisk from util-linux 2.25.2
-- out=$(sfdisk --version) ||
-+ out=$(LANG=C sfdisk --version) ||
- { error "failed to get sfdisk version"; return 1; }
- set -- $out
- ver=$4