diff options
author | Howard Chu <hyc@symas.com> | 2019-11-18 07:58:22 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2019-11-18 09:18:00 +0000 |
commit | abeed9a767ae68389fb1fae9f0bd4affc886e610 (patch) | |
tree | 80bdeaf930e496b95a429b350942e4d96edac0f8 /contrib/depends/patches | |
parent | Fixup compiled python in OSX (diff) | |
download | monero-abeed9a767ae68389fb1fae9f0bd4affc886e610.tar.xz |
"Fix" non-determinism in native_cctools build
By omitting the otool binary which is built non-deterministically.
We don't use it anyway.
Diffstat (limited to 'contrib/depends/patches')
-rw-r--r-- | contrib/depends/patches/native_cctools/skip_otool.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/depends/patches/native_cctools/skip_otool.patch b/contrib/depends/patches/native_cctools/skip_otool.patch new file mode 100644 index 000000000..30c4ee524 --- /dev/null +++ b/contrib/depends/patches/native_cctools/skip_otool.patch @@ -0,0 +1,12 @@ +--- cctools/Makefile.am.O 2016-06-09 15:06:16.000000000 +0100 ++++ cctools/Makefile.am 2019-11-18 08:59:20.078663220 +0000 +@@ -1,7 +1,7 @@ + if ISDARWIN +-SUBDIRS=libstuff ar as misc otool ld64 $(LD_CLASSIC) ++SUBDIRS=libstuff ar as misc ld64 $(LD_CLASSIC) + else +-SUBDIRS=libstuff ar as misc libobjc2 otool ld64 $(LD_CLASSIC) ++SUBDIRS=libstuff ar as misc ld64 $(LD_CLASSIC) + endif + + ACLOCAL_AMFLAGS = -I m4 |