|
Bugzilla – Full Text Bug Listing |
| Summary: | ./waf --check-profile does not work when options list contains an = sign | ||
|---|---|---|---|
| Product: | ns-3 | Reporter: | Mathias Ettinger <mettinger> |
| Component: | general | Assignee: | ns-bugs <ns-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | trivial | CC: | tomh |
| Priority: | P3 | ||
| Version: | ns-3.27 | ||
| Hardware: | All | ||
| OS: | All | ||
| Attachments: |
Simple patch
Bigger patch with block rewrite |
||
Created attachment 3002 [details]
Bigger patch with block rewrite
confirmed; patch (bigger patch) fixes it for me. fixed in changeset 13390:78abcf179b64 |
Created attachment 3001 [details] Simple patch On my system, after running ./waf configue, the `.lock-waf_linux_build` file contains, among other things: ... options = {..., 'cxx_standard': '-std=c++11', ...} ... Thus breaking the --check-profile command that attempt to split this line on the `=` signs. The split should be performed only on the first `=` and not on the other ones. Please find attached a patch that fixes the issue.