From 3695826ac458eebf43ee999a4bd34116fdb46f81 Mon Sep 17 00:00:00 2001 From: Maxie Dion Schmidt Date: Fri, 13 May 2022 01:59:44 -0400 Subject: [PATCH] Modifying Makefile to ignore errors about missing directories for brew installs on MacOS --- Python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/Makefile b/Python/Makefile index f276e65..ecdffd4 100644 --- a/Python/Makefile +++ b/Python/Makefile @@ -188,7 +188,7 @@ make_runLibDepsConsfigureScripts: CC="$(CC)" CCLD="$(LD)" CXX="$(CXX)" CXXLD="$(LD)" \ /bin/bash ./configure --enable-static --disable-shared --with-pic --enable-cxx \ --disable-assembly gmp_cv_asm_underscore=yes - @cd $(LIBGOMPDIR) && rm -f ./shtool && cp libtool-dist libtool && \ + @cd $(LIBGOMPDIR) && rm -f ./shtool && cp -Rp libtool-dist libtool && \ CC="$(CC_LIBGOMP)" \ FC="$(GFORTRAN)" \ CFLAGS="$(CFLAGS_LIBGOMP)" \