mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
coreutils: Fix build of ls
This commit is contained in:
parent
7c90d5bf4c
commit
fef663a46b
3 changed files with 14 additions and 2 deletions
11
sysa/coreutils-5.0/patches/ls-strcmp.patch
Normal file
11
sysa/coreutils-5.0/patches/ls-strcmp.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- src/ls.c
|
||||
+++ src/ls.c
|
||||
@@ -2597,7 +2597,7 @@ xstrcoll (char const *a, char const *b)
|
||||
{
|
||||
int diff;
|
||||
errno = 0;
|
||||
- diff = strcoll (a, b);
|
||||
+ diff = strcmp (a, b);
|
||||
if (errno)
|
||||
{
|
||||
error (0, errno, _("cannot compare file names %s and %s"),
|
||||
Loading…
Add table
Add a link
Reference in a new issue