Kaydet (Commit) c4c06af5 authored tarafından Greg Ward's avatar Greg Ward

Patch from Harry Henry Gebel: fixes a bit of code that slipped by my

overhaul last night.
üst 39851516
......@@ -308,9 +308,8 @@ class bdist_rpm (Command):
rpm_args.append('-bb')
else:
rpm_args.append('-ba')
topdir = os.getcwd() + 'build/rpm'
rpm_args.extend(['--define',
'_topdir ' + os.getcwd() + '/build/rpm',])
'_topdir %s/%s' % (os.getcwd(), rpm_base),])
if self.clean:
rpm_args.append('--clean')
rpm_args.append(spec_path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment