| Summary: | Spurious wrong-script-interpreter on .in files | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Orion Poplawski <orion> |
| Component: | rpmlint | Assignee: | Tom "spot" Callaway <tcallawa> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | a.badger, manuel.wolfshant, tcallawa, tmz, twoerner, ville.skytta |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-10-30 07:57:23 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Orion Poplawski
2013-10-29 18:04:49 UTC
Why are you shipping the *.in files in the first place, given that you're also shipping the scripts generated from those which have the interpreter replaced? Not a bug as far as I'm concerned -- rpmlint successfully flagged a packaging issue.
$ for f in usr/share/plplot5.9.10/examples/tk/*.in ; do echo ${f%.in} ; echo $f ; done | xargs head -n 1
==> usr/share/plplot5.9.10/examples/tk/plgrid <==
#!/bin/sh
==> usr/share/plplot5.9.10/examples/tk/plgrid.in <==
#!/bin/sh
==> usr/share/plplot5.9.10/examples/tk/standard_examples <==
#!/usr/bin/bash
==> usr/share/plplot5.9.10/examples/tk/standard_examples.in <==
#!@SH_EXECUTABLE@
==> usr/share/plplot5.9.10/examples/tk/tk01 <==
#!/usr/share/plplot5.9.10/examples/tk/xtk01 -f
==> usr/share/plplot5.9.10/examples/tk/tk01.in <==
#!@xtk01_LOCATION@ -f
==> usr/share/plplot5.9.10/examples/tk/tk02 <==
#!/usr/share/plplot5.9.10/examples/tk/xtk02 -f
==> usr/share/plplot5.9.10/examples/tk/tk02.in <==
#!@xtk02_LOCATION@ -f
==> usr/share/plplot5.9.10/examples/tk/tk03 <==
#!/bin/sh
==> usr/share/plplot5.9.10/examples/tk/tk03.in <==
#!/bin/sh
==> usr/share/plplot5.9.10/examples/tk/tk04 <==
#!/usr/share/plplot5.9.10/examples/tk/xtk04 -f
==> usr/share/plplot5.9.10/examples/tk/tk04.in <==
#!@xtk04_LOCATION@ -f
Users are able to rebuild the examples as desired. |