We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03b4de commit 39208c5Copy full SHA for 39208c5
tools/cedev-config/src/main.c
@@ -52,7 +52,7 @@ static const char *executable_path(void)
52
return path;
53
}
54
55
-static bool is_valid_path(const char *str, size_t max)
+static bool is_valid_make_path(const char *str, size_t max)
56
{
57
size_t i = 0;
58
@@ -119,7 +119,7 @@ int main(int argc, char *argv[])
119
120
case 'm':
121
cwk_path_get_absolute(cedev, "./meta/makefile.mk", buffer, sizeof buffer);
122
- if (is_valid_path(buffer, sizeof buffer))
+ if (!is_valid_make_path(buffer, sizeof buffer))
123
124
fprintf(stderr, "The CE C Toolchain is installed in a directory containing\n");
125
fprintf(stderr, "spaces. This does not work properly with the \'make\' command.\n");
0 commit comments