forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update BerkeleyGW-3.1.0_makefile.patch
- Loading branch information
1 parent
2a6ad97
commit 0ef30d5
Showing
2 changed files
with
26 additions
and
2 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
24 changes: 24 additions & 0 deletions
24
easybuild/easyconfigs/b/BerkeleyGW/BerkeleyGW-3.1.0_makefile.patch
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,24 @@ | ||
* don't rebuild flavors when installing and checking, and check using MPI | ||
author: Miguel Dias Costa (National University of Singapore) | ||
--- Makefile.orig 2024-01-04 10:02:31.992454794 +0800 | ||
+++ Makefile 2024-01-04 10:02:52.863330557 +0800 | ||
@@ -130,7 +130,7 @@ | ||
cp flavor_cplx.mk flavor.mk | ||
$(MAKE) all | ||
|
||
-install: all | ||
+install: | ||
ifdef INSTDIR | ||
mkdir -p $(INSTDIR)/bin | ||
install bin/*.x $(INSTDIR)/bin/ | ||
@@ -152,8 +152,8 @@ | ||
$(error Error: Please define installation prefix INSTDIR via 'make install INSTDIR='.) | ||
endif | ||
|
||
-check: all | ||
- cd testsuite && $(MAKE) check | ||
+check: | ||
+ cd testsuite && $(MAKE) check-parallel | ||
|
||
check-save: all | ||
cd testsuite && $(MAKE) check-save |