On Mon, Oct 27, 2003 at 04:44:09PM -0500, Fred L. Drake, Jr. wrote:
> Has anyone looked into fixing this in Distutils yet?
It's supposed to be fixed; from bdist_rpm.run():
rpm_cmd = ['rpm']
if os.path.exists('/usr/bin/rpmbuild') or \
os.path.exists('/bin/rpmbuild'):
rpm_cmd = ['rpmbuild']
Is rpmbuild somewhere else?
--amk