aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/grub/no-asorti.patch
diff options
context:
space:
mode:
authoremmett1 <emmett1.2iligrams@protonmail.com>2025-03-12 04:01:18 +0100
committeremmett1 <emmett1.2iligrams@protonmail.com>2025-03-12 04:01:18 +0100
commitddd8e1a8fab2ac39396282a7c09ddf6eca219613 (patch)
tree12796519575126d60e06d02e9eab68856229cf58 /repos/extra/grub/no-asorti.patch
parentb5a8a6c29e40f786ceb808c0b95f01c4251111d1 (diff)
downloadalicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.tar.gz
alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.zip
clang repos updated
Diffstat (limited to 'repos/extra/grub/no-asorti.patch')
-rwxr-xr-xrepos/extra/grub/no-asorti.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/repos/extra/grub/no-asorti.patch b/repos/extra/grub/no-asorti.patch
deleted file mode 100755
index 90834ab4..00000000
--- a/repos/extra/grub/no-asorti.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/grub-core/genmoddep.awk b/grub-core/genmoddep.awk
-index cc987a5..5e9f942 100644
---- a/grub-core/genmoddep.awk
-+++ b/grub-core/genmoddep.awk
-@@ -63,9 +63,7 @@ END {
- }
- modlist = ""
- depcount[mod] = 0
-- n = asorti(uniqmods, w)
-- for (i = 1; i <= n; i++) {
-- depmod = w[i]
-+ for (depmod in uniqmods) {
- modlist = modlist " " depmod;
- inverse_dependencies[depmod] = inverse_dependencies[depmod] " " mod
- depcount[mod]++