From 29cec9b8cc17fa28bd7f97174391088570f369fd Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Sat, 30 Jan 2021 17:20:13 -0800 Subject: [PATCH] fix missing QCOM_REPLAY import in cereal SConscript --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index df9d0a9..7ad7f2f 100644 --- a/SConstruct +++ b/SConstruct @@ -51,7 +51,8 @@ env = Environment( tools=["default", "cython"] ) -Export('env', 'zmq', 'arch') +QCOM_REPLAY = False +Export('env', 'zmq', 'arch', 'QCOM_REPLAY') cereal = [File('#cereal/libcereal.a')] messaging = [File('#cereal/libmessaging.a')]