aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-02-20 00:01:56 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-02-20 00:01:56 +0100
commitf806f5d28593be474fc5ef864b6fcbfbe131b4d0 (patch)
tree28d31ec758c44fe8aed3b76546931fa11ddf0d02
parenteb18ba53fe2aa1fcdb9860f7672d61a9eb015b3a (diff)
Fix glob
-rw-r--r--make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.c b/make.c
index 9a5d52f..7e4f340 100644
--- a/make.c
+++ b/make.c
@@ -258,7 +258,7 @@ build_c8dump(void)
glob_t g;
build_librune();
- if (glob("src/c8asm/*.c", 0, globerr, &g))
+ if (glob("src/c8dump/*.c", 0, globerr, &g))
die("glob");
for (size_t i = 0; i < g.gl_pathc; i++)
mkc(g.gl_pathv[i], (struct strv){});