Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 575414
Collapse All | Expand All

(-)a/nptl/tst-cancel-wrappers.sh (-1 / +1 lines)
Lines 74-80 C["__xpg_sigpause"]=1 Link Here
74
  seen=""
74
  seen=""
75
  seen_enable=""
75
  seen_enable=""
76
  seen_disable=""
76
  seen_disable=""
77
  object=gensub(/^.*\[(.*)\]:$/,"\\1","",$0)
77
  object=gensub(/^.*\[(.*)\]:$/, "\\1", 1, $0)
78
  next
78
  next
79
}
79
}
80
{
80
{
(-)a/scripts/sysd-rules.awk (-2 / +1 lines)
Lines 53-59 BEGIN { Link Here
53
        if (target_pattern == "%") {
53
        if (target_pattern == "%") {
54
          command_suffix = "";
54
          command_suffix = "";
55
        } else {
55
        } else {
56
          prefix = gensub(/%/, "", "", target_pattern);
56
          prefix = gensub(/%/, "", 1, target_pattern);
57
          command_suffix = " $(" prefix  "CPPFLAGS)";
57
          command_suffix = " $(" prefix  "CPPFLAGS)";
58
        }
58
        }
59
        target = "$(objpfx)" target_pattern o ":";
59
        target = "$(objpfx)" target_pattern o ":";
60
- 

Return to bug 575414