Modify ↓
Opened 14 years ago
Closed 14 years ago
#671 closed defect (fixed)
fix a typo of configure's with_argument in ctools.py.
Reported by: | Wang Diancheng | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 0.6.1 |
Component: | Build master | Version: | dev |
Keywords: | Cc: | ||
Operating System: | Linux |
Description
following is the patch:
-
ctools.py
old new 61 61 if cxxflags: 62 62 args.append('CXXFLAGS=%s' % cxxflags) 63 63 if prefix: 64 args.append('--prefix=%s s' % prefix)64 args.append('--prefix=%s' % prefix) 65 65 66 66 from bitten.build import shtools 67 67 returncode = shtools.execute(ctxt, file_=file_, args=args)
Attachments (0)
Change History (3)
comment:1 Changed 14 years ago by anonymous
- Summary changed from fix a type of configure with argument in ctools.py. to fix a typo of configure's with_argument in ctools.py.
comment:2 Changed 14 years ago by osimons
- Milestone changed from 0.7 to 0.6.1
comment:3 Changed 14 years ago by osimons
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
Thanks. Comitted in [991] (trunk) and [992] (0.6.x).