forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathNWChem-7.0.2_fix_gnumakefile.patch
25 lines (23 loc) · 1.15 KB
/
NWChem-7.0.2_fix_gnumakefile.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Author: @maxim-masterov (SURF)
# Fixes quotes in the makefile to ensure correct variable substitution in the source code.
diff -Nru nwchem-7.0.2.orig/src/GNUmakefile nwchem-7.0.2/src/GNUmakefile
--- nwchem-7.0.2.orig/src/GNUmakefile 2021-08-30 13:39:57.168736415 +0200
+++ nwchem-7.0.2/src/GNUmakefile 2021-09-01 12:41:02.105915193 +0200
@@ -5,13 +5,13 @@
SUBDIRS = $(NWSUBDIRS)
- LIB_DEFINES = -DCOMPILATION_DATE="'`date +%a_%b_%d_%H:%M:%S_%Y`'" \
- -DCOMPILATION_DIR="'$(TOPDIR)'" \
- -DNWCHEM_BRANCH="'$(CODE_BRANCH)'"
+ LIB_DEFINES = -DCOMPILATION_DATE=\"`date +%a_%b_%d_%H:%M:%S_%Y`\" \
+ -DCOMPILATION_DIR=\"$(TOPDIR)\" \
+ -DNWCHEM_BRANCH=\"$(CODE_BRANCH)\"
ifeq ($(XLFMAC),y)
- FOPTIONS += -WF,-DCOMPILATION_DATE="'`date +%a_%b_%d_%H:%M:%S_%Y`'" \
- -WF,-DCOMPILATION_DIR="'$(TOPDIR)'" \
- -WF,-DNWCHEM_BRANCH="'$(CODE_BRANCH)'"
+ FOPTIONS += -WF,-DCOMPILATION_DATE=\"`date +%a_%b_%d_%H:%M:%S_%Y`\" \
+ -WF,-DCOMPILATION_DIR=\"$(TOPDIR)\" \
+ -WF,-DNWCHEM_BRANCH=\"$(CODE_BRANCH)\"
LIB_DEFINES=
DEFINES=
endif