From c8e52cbf27b1219c84652451b5b192fd50657944 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Sat, 4 Oct 2008 20:09:46 -1000 Subject: [PATCH] Use os.path.join() rather than explicitly listing full paths. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a718ccbb..fef9de5e 100644 --- a/setup.py +++ b/setup.py @@ -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 )