source: clfs-sysroot/patches/glibc-2.6-mawk_fix-1.patch @ 00520f6

Last change on this file since 00520f6 was 00520f6, checked in by Joe Ciccone <jciccone@…>, 17 years ago

Update patches.

  • Property mode set to 100644
File size: 601 bytes
RevLine 
[00520f6]1Submitted By: Jim Gifford <jim@linuxfromscratch.org>
2Date: 2006-07-10
3Initial Package Version: 2.4
4Origin: Various
5Upstream Status: Unknown
6Description: Fixes build if host distro is using mawk.
7             Distro's known to have the issue Debina
8             and Ubuntu
9
10--- glibc-2.4/scripts/gen-sorted.awk.orig       2006-07-10 23:19:03.474223558 -0700
11+++ glibc-2.4/scripts/gen-sorted.awk    2006-07-10 23:21:04.175110403 -0700
12@@ -16,7 +16,7 @@
13 {
14   subdir = type = FILENAME;
15   sub(/^.*\//, "", type);
16-  sub(/\/[^/]+$/, "", subdir);
17+  sub(/\/[^\/]+$/, "", subdir);
18   sub(/^.*\//, "", subdir);
19   thisdir = "";
20 }
Note: See TracBrowser for help on using the repository browser.