Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 155520 Details for
Bug 241471
In OCaml, *.cmi files are not source files
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Candidate patch
rpmlint-develfiles.patch (text/plain), 1.88 KB, created by
Ville Skyttä
on 2007-05-27 12:25:01 UTC
(
hide
)
Description:
Candidate patch
Filename:
MIME Type:
Creator:
Ville Skyttä
Created:
2007-05-27 12:25:01 UTC
Size:
1.88 KB
patch
obsolete
>Index: FilesCheck.py >=================================================================== >--- FilesCheck.py (revision 1350) >+++ FilesCheck.py (working copy) >@@ -175,7 +175,8 @@ > points_regex=re.compile('^\.\./(.*)') > doc_regex=re.compile('^/usr(/share|/X11R6)?/(doc|man|info)/') > bin_regex=re.compile('^(/usr)?/s?bin/') >-includefile_regex=re.compile('\.((c|h)(pp|xx)?|a|cmi)$') >+includefile_regex = re.compile('\.(c|h)(pp|xx)?$', re.IGNORECASE) >+develfile_regex = re.compile('\.(a|cmxa?|mli?|o)$') > buildconfigfile_regex=re.compile('(\.pc|/bin/.+-config)$') > sofile_regex=re.compile('/lib(64)?/[^/]+\.so$') > devel_regex=re.compile('(.*)-(debug(info)?|devel|source|static)$') >@@ -475,7 +476,11 @@ > > if bin_regex.search(f) and mode & 0111 == 0: > printWarning(pkg, 'non-executable-in-bin', f, oct(perm)) >- if not devel_pkg and (includefile_regex.search(f) or buildconfigfile_regex.search(f)) and not is_doc: >+ if not devel_pkg and \ >+ (includefile_regex.search(f) or \ >+ develfile_regex.search(f) or \ >+ buildconfigfile_regex.search(f)) and \ >+ not is_doc: > printWarning(pkg, 'devel-file-in-non-devel-package', f) > if mode & 0444 != 0444 and perm & 07000 == 0 and f[0:len('/var/log')] != '/var/log': > printError(pkg, 'non-readable', f, oct(perm)) >@@ -519,6 +524,7 @@ > nonexec_file = f.endswith('.pc') or \ > compr_regex.search(f) or \ > includefile_regex.search(f) or \ >+ develfile_regex.search(f) or \ > logrotate_regex.search(f) > if nonexec_file: > printWarning(pkg, 'spurious-executable-perm', f)
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 241471
: 155520