Skip to content

Commit 558cd54

Browse files
authored
Merge pull request #3093 from martin-frbg/fix3064
fix copy-paste error in build rules for cblas_crotg and cblas_zrotg
2 parents 35086cb + bd906e3 commit 558cd54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1634,10 +1634,10 @@ cblas_srotg.$(SUFFIX) cblas_srotg.$(PSUFFIX): rotg.c
16341634
cblas_drotg.$(SUFFIX) cblas_drotg.$(PSUFFIX): rotg.c
16351635
$(CC) $(CFLAGS) -DCBLAS -c $< -o $(@F)
16361636

1637-
cblas_crotg.$(SUFFIX) crotg.$(PSUFFIX): zrotg.c
1637+
cblas_crotg.$(SUFFIX) cblas_crotg.$(PSUFFIX): zrotg.c
16381638
$(CC) -c $(CFLAGS) -DCBLAS $< -o $(@F)
16391639

1640-
cblas_zrotg.$(SUFFIX) zrotg.$(PSUFFIX): zrotg.c
1640+
cblas_zrotg.$(SUFFIX) cblas_zrotg.$(PSUFFIX): zrotg.c
16411641
$(CC) -c $(CFLAGS) -DCBLAS $< -o $(@F)
16421642

16431643
cblas_srotm.$(SUFFIX) cblas_srotm.$(PSUFFIX): rotm.c

0 commit comments

Comments
 (0)