apache / apache/cordova-node-xcode
pbxProject.prototype.addToHeaderSearchPaths #13 issue, still appeared.
- Dominant language
- JavaScript
- Stars
- 217
- Forks
- 102
- Avg merge
- 2d 3h
- Merged PRs (30d)
- 6
Description
```
if (!buildSettings['HEADER_SEARCH_PATHS']) {
buildSettings['HEADER_SEARCH_PATHS'] = [INHERITED];
}
```
This can be changed like this?
```
if (!buildSettings['HEADER_SEARCH_PATHS']
|| buildSettings['HEADER_SEARCH_PATHS'] === INHERITED) {
buildSettings['HEADER_SEARCH_PATHS'] = [INHERITED];
}
```
Contributor guide
Research direction
Start at pbxProject.prototype.addToHeaderSearchPaths and inspect how HEADER_SEARCH_PATHS is handled when it equals INHERITED. Compare the current condition with the proposed change, then verify that this case produces the intended header search paths using the repository's existing checks.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, node.js
- Domain
- build-system
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100