diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-02-20 00:01:56 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-20 00:01:56 +0100 |
commit | f806f5d28593be474fc5ef864b6fcbfbe131b4d0 (patch) | |
tree | 28d31ec758c44fe8aed3b76546931fa11ddf0d02 | |
parent | eb18ba53fe2aa1fcdb9860f7672d61a9eb015b3a (diff) |
Fix glob
-rw-r--r-- | make.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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){}); |