Skip to content

Commit 269c0cc

Browse files
committed
Fix manual dependencies
For some reason stdlib_ascii.o was not listed as a dependency under stdlib_io.o, despite the fact that the stdlib_io module uses stdlib_ascii.o. This commit addresses that discrepency. Furthermore, I cleaned up redundant dependencies under stdlib_math_logspace and I fixed a formatting mistake that prevented the latest version 10 Ubuntu check from being passed.
1 parent adbcab9 commit 269c0cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.manual

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ stdlib_error.o: stdlib_optval.o
7575
stdlib_specialfunctions.o: stdlib_kinds.o
7676
stdlib_specialfunctions_legendre.o: stdlib_kinds.o stdlib_specialfunctions.o
7777
stdlib_io.o: \
78+
stdlib_ascii.o \
7879
stdlib_error.o \
7980
stdlib_optval.o \
8081
stdlib_kinds.o
@@ -146,6 +147,5 @@ stdlib_math.o: stdlib_kinds.o
146147
stdlib_math_linspace.o: \
147148
stdlib_math.o
148149
stdlib_math_logspace.o: \
149-
stdlib_math.o \
150-
stdlib_math_linspace.o \
150+
stdlib_math_linspace.o
151151
stdlib_linalg_outer_product.o: stdlib_linalg.o

0 commit comments

Comments
 (0)