summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mobile
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2019-04-25 14:09:20 -0400
committerHenrik Edin <henrik.edin@mongodb.com>2019-04-25 14:09:43 -0400
commite4b0acb5770c5664db031d0c51389932fc2c4d56 (patch)
tree444c8ebab0ce4de62835d0ef497626aee02088f7 /src/mongo/db/storage/mobile
parentadc119c397aecfc956e90d21b04aa5be196249c0 (diff)
downloadmongo-e4b0acb5770c5664db031d0c51389932fc2c4d56.tar.gz
SERVER-40125 Fix dynamic builds when mobile storage engine is enabled
Diffstat (limited to 'src/mongo/db/storage/mobile')
-rw-r--r--src/mongo/db/storage/mobile/SConscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/storage/mobile/SConscript b/src/mongo/db/storage/mobile/SConscript
index 294dd3deb37..03e951da946 100644
--- a/src/mongo/db/storage/mobile/SConscript
+++ b/src/mongo/db/storage/mobile/SConscript
@@ -50,12 +50,13 @@ if mobile_se:
target='mobile_options_mongod',
source=[
'mobile_options_mongod.cpp',
- ],
+ ],
PROGDEPS_DEPENDENTS=serveronlyProgDepsDependents,
LIBDEPS=[
'$BUILD_DIR/mongo/util/options_parser/options_parser',
- ],
+ ],
LIBDEPS_PRIVATE=[
+ 'storage_mobile_core',
],
)