diff options
author | Andrew Aldridge <i80and@foxquill.com> | 2017-08-29 17:42:19 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2017-09-20 11:52:56 -0400 |
commit | 976371fdd34ade74f59ee9f3863bf9047421666e (patch) | |
tree | ffb736d9c451818d2541e065e1b544298dadf787 /SConstruct | |
parent | e724bb7018a482640c4f194f88b554af2c59d76e (diff) | |
download | mongo-976371fdd34ade74f59ee9f3863bf9047421666e.tar.gz |
SERVER-30914: Repair basic builds on OpenBSD
Closes #1172
Signed-off-by: Mark Benvenuto <mark.benvenuto@mongodb.com>
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index a9e393d0063..802398f8ef3 100644 --- a/SConstruct +++ b/SConstruct @@ -1368,7 +1368,7 @@ if env['_LIBDEPS'] == '$_LIBDEPS_LIBS': # toolchain, or may be using it for the archiver but not the # linker, and binutils currently is the olny thing that supports # thin archives. Don't even try on those platforms. - if not env.TargetOSIs('solaris', 'darwin', 'windows'): + if not env.TargetOSIs('solaris', 'darwin', 'windows', 'openbsd'): env.Tool('thin_archive') if env.TargetOSIs('linux', 'freebsd', 'openbsd'): |