diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-23 00:05:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-23 00:05:16 +0100 |
| commit | ed34be5011aafe4ebdf42d4f6426c788d39dc5e1 (patch) | |
| tree | 6e27b3df32386af2ec0a6d2bde0c27a4bc34c9c9 /cscript | |
| parent | 979f68288ffe879a46a51a0f45175c7feb624a62 (diff) | |
| parent | 074e70083a115eaac2b593b1c42962ff7e0c3951 (diff) | |
Merge branch 'bug-120'
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -55,7 +55,12 @@ def package(env, target, version): env.set('CDIST_CXXFLAGS', env.get('CXXFLAGS')) env.set('CDIST_PKG_CONFIG_PATH', env.get('PKG_CONFIG_PATH')) env.command('dpkg-buildpackage') - return os.path.abspath(glob.glob('../*.deb')[0]) + + debs = [] + for p in glob.glob('../*.deb'): + debs.append(os.path.abspath(p)) + + return debs def make_pot(env): env.command('./waf pot') |
