-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies. Incorporates NCSubMesh update to mfem, thereby e…
…nabling nonconformal waveports
- Loading branch information
Showing
6 changed files
with
37 additions
and
1,983 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/config/install.py b/config/install.py | ||
index 50c868d1136..69b2b097512 100755 | ||
--- a/config/install.py | ||
+++ b/config/install.py | ||
@@ -508,7 +508,7 @@ for file in files: | ||
return | ||
shutil.copy2(src, dst) | ||
if self.setCompilers.getCompiler().find('win32fe') < 0 and os.path.splitext(dst)[1] == '.'+self.arLibSuffix: | ||
- self.executeShellCommand([self.ranlib, dst]) | ||
+ self.executeShellCommand(self.ranlib + " " + dst) | ||
if os.path.splitext(dst)[1] == '.dylib' and shutil.which('otool') and shutil.which('install_name_tool'): | ||
[output,err,flg] = self.executeShellCommand(['otool', '-D', src]) | ||
oldname = output[output.find("\n")+1:] |
Oops, something went wrong.