aports/testing/signal-desktop/libsignal-auditable.patch
Antoine Martin 267bc4c807 testing/signal-desktop: use default_prepare
Aport had previously implemented custom patching logics. This is
redundant, thus this refactor removed these custom logics by moving the
source code that was outside of builddir so that default_prepare could
be used. All patches were rebased for this.
2024-11-12 15:59:51 +00:00

13 lines
780 B
Diff

diff --git a/libsignal/node/build_node_bridge.py.orig b/libsignal/node/build_node_bridge.py
index e75c2d0..3bdb328 100755
--- a/libsignal/node/build_node_bridge.py.orig
+++ b/libsignal/node/build_node_bridge.py
@@ -97,7 +97,7 @@ def main(args: Optional[List[str]] = None) -> int:
if 'npm_config_libsignal_debug_level_logs' not in os.environ:
features.append('log/release_max_level_info')
- cmdline = ['cargo', 'build', '--target', cargo_target, '-p', 'libsignal-node', '--features', ','.join(features)]
+ cmdline = ['cargo', 'auditable', 'build', '--target', cargo_target, '-p', 'libsignal-node', '--features', ','.join(features)]
if configuration_name == 'Release':
cmdline.append('--release')
print("Running '%s'" % (' '.join(cmdline)))