source: patches/glibc-2.4-mawk_fix-1.patch @ 909154a

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 909154a was 909154a, checked in by Jim Gifford <clfs@…>, 18 years ago

Added: glibc-2.4-mawk_fix-1.patch

  • Property mode set to 100644
File size: 601 bytes
RevLine 
[909154a]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.