diff options
| author | Robert Gemmell <robbie@apache.org> | 2010-05-31 20:28:11 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2010-05-31 20:28:11 +0000 |
| commit | 519938ccc3664d22437db58500ac2cc94c721259 (patch) | |
| tree | 73f51ab54f0ad047e4915adbe68ec21e24cc2134 /qpid/java | |
| parent | 6fb9e09c42450393bfaa79de3baced7b04383ea2 (diff) | |
| download | qpid-python-519938ccc3664d22437db58500ac2cc94c721259.tar.gz | |
QPID-2520: use os.pathsep in genpom to allow it to function on Windows
Applied patch from Emmanuel Bourg <ebourg@apache.org>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@949855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rwxr-xr-x | qpid/java/genpom | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/genpom b/qpid/java/genpom index e3b89d0568..92822a08ae 100755 --- a/qpid/java/genpom +++ b/qpid/java/genpom @@ -47,7 +47,7 @@ if opts.search_path is None: else: path = [] for p in opts.search_path: - path.extend(p.split(":")) + path.extend(p.split(os.pathsep)) expanded_path = [] for p in path: |
