# HG changeset patch # User osimons # Date 1304976412 0 # Node ID 2c82cf261d9ee0fe28b65721a411c4578fa49c1b # Parent 16972cef96bfa66818399ff9b873b39366d25522 Typo in `ctools.configure` handling of `prefix` argument. Fixes #671, thanks to Wang Diancheng. diff --git a/bitten/build/ctools.py b/bitten/build/ctools.py --- a/bitten/build/ctools.py +++ b/bitten/build/ctools.py @@ -61,7 +61,7 @@ if cxxflags: args.append('CXXFLAGS=%s' % cxxflags) if prefix: - args.append('--prefix=%ss' % prefix) + args.append('--prefix=%s' % prefix) from bitten.build import shtools returncode = shtools.execute(ctxt, file_=file_, args=args)