Skip to content

Commit 1a0f57c

Browse files
authored
Fix missing backquotes
1 parent eddc65c commit 1a0f57c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.system

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ DYNAMIC_CORE += POWER9
649649
else
650650
$(info, OpenBLAS: Your gcc version is too old to build the POWER9 kernels.)
651651
endif
652-
LDVERSIONGTEQ35 := $(shell expr ld --version | head -1 | cut -f2 -d "." | cut -f1 -d "-" >= 35)
652+
LDVERSIONGTEQ35 := $(shell expr `ld --version | head -1 | cut -f2 -d "." | cut -f1 -d "-"` >= 35)
653653
ifeq ($(GCCVERSIONGTEQ11)$(LDVERSIONGTEQ35), 11)
654654
DYNAMIC_CORE += POWER10
655655
CCOMMON_OPT += -DHAVE_P10_SUPPORT

0 commit comments

Comments
 (0)