godotengine / webrtc-native

The official GDNative WebRTC implementation for non-html exports.
MIT License
210 stars 34 forks source link

[SCons] Fix regression causing unnecessary rebuilds. #103

Closed Faless closed 1 year ago

Faless commented 1 year ago

The num_jobs (-j flag) was being tracked as part of the cmake and openssl build actions, thus causing a rebuild when compiling with different concurrently.

This commit strip the -j flag from the signature of the actions so scons won't rebuild openssl/libdatachannel when changing the parallelism option.

Fixes a regression introduced in #102 .