Use os.path.join() rather than explicitly listing full paths.

This commit is contained in:
David Cantrell 2008-10-04 20:09:46 -10:00
parent f1375c5ea8
commit c8e52cbf27
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ setup(name='lorax',
license='GPLv2+',
package_dir = {'': 'src'},
packages = ['pylorax'],
scripts = ['src/bin/lorax'],
scripts = [os.path.join('src', 'bin', 'lorax')],
data_files = data_files
)