Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 244091 Details for
Bug 334005
x11-plugins/wmdrawer does not respect LDFLAGS
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
extract_LDFLAGS_warning
extract_LDFLAGS_warning (text/plain), 922 bytes, created by
Arfrever Frehtes Taifersar Arahesis (RETIRED)
on 2010-08-22 20:16:42 UTC
(
hide
)
Description:
extract_LDFLAGS_warning
Filename:
MIME Type:
Creator:
Arfrever Frehtes Taifersar Arahesis (RETIRED)
Created:
2010-08-22 20:16:42 UTC
Size:
922 bytes
patch
obsolete
>#!/usr/bin/python3 ># Copyright 2010 Arfrever Frehtes Taifersar Arahesis ># Distributed under the terms of the GNU General Public License v3 > >import sys > >if len(sys.argv) != 2: > print("Expected 1 argument", file=sys.stderr) > sys.exit(1) > >file = sys.argv[1] > >try: > lines = open(file, "rb").read().splitlines(True) >except: > print("Opening of '{}' failed".format(file), file=sys.stderr) > sys.exit(1) > >for number, line in enumerate(lines): > if (lines[number] == b" * QA Notice: Files built without respecting LDFLAGS have been detected\n" and > lines[number+1] == b" * Please include the following list of files in your report:\n"): > sys.stdout.buffer.write(lines[number]) > sys.stdout.buffer.write(lines[number+1]) > for line in lines[number+2:]: > if line[:4] == b" * /": > sys.stdout.buffer.write(line) > else: > break > break
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 334005
:
244079
| 244091