On Wed, 30 Mar 2011 09:25:41 +0300 Panu Matilainen pmatilai@laiskiainen.org wrote:
My app depends on python so I have a Requires: python line in the .spec file. Python is installed on my target system but the python binary in located in /usr/bin as indicated by $ rpm -qil python When I try to install my rpm, it complains that it can't find /usr/local/bin/python.
Any idea why my rpm is looking for python in all the wrong places?
One or more python scripts in your package contain this shebang: #!/usr/local/bin/python
Rpm is right to complain: If you tried to execute that file, it would fail because no such python interpreter exists on a normal Fedora installation. You need to locate + patch those files to refer to the system python path instead.
- Panu -
That was it, thanks. Only 2 instances so not too much work.
Steve