Merge pull request #61169 from matthewbauer/meson-static

static: set default_library flag for meson in makeStaticLibrary
This commit is contained in:
Matthew Bauer 2019-05-18 15:02:33 -05:00 committed by GitHub
commit 5ba633970b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,6 +60,7 @@ rec {
"--enable-static"
"--disable-shared"
];
mesonFlags = (args.mesonFlags or []) ++ [ "-Ddefault_library=static" ];
});
};