mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
boost-build: make darwin patch work across all versions
This commit is contained in:
parent
eca50883fc
commit
b772490d9b
@ -1,12 +0,0 @@
|
||||
diff --git a/src/build-system.jam b/src/build-system.jam
|
||||
index 60425c54..c6842217 100644
|
||||
--- a/src/build-system.jam
|
||||
+++ b/src/build-system.jam
|
||||
@@ -644,7 +644,7 @@ local rule should-clean-project ( project )
|
||||
}
|
||||
else if [ os.name ] = MACOSX
|
||||
{
|
||||
- default-toolset = darwin ;
|
||||
+ default-toolset = clang-darwin ;
|
||||
}
|
||||
}
|
@ -33,10 +33,11 @@ stdenv.mkDerivation {
|
||||
sourceRoot="$sourceRoot/tools/build"
|
||||
'';
|
||||
|
||||
patches = [
|
||||
# Upstream defaults to gcc on darwin, but we use clang.
|
||||
./darwin-default-toolset.patch
|
||||
];
|
||||
# Upstream defaults to gcc on darwin, but we use clang.
|
||||
postPatch = ''
|
||||
substituteInPlace src/build-system.jam \
|
||||
--replace "default-toolset = darwin" "default-toolset = clang-darwin"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
bison
|
||||
|
Loading…
Reference in New Issue
Block a user