Don't add a slash to the install path of the tcc in display_info()
This commit is contained in:
parent
d70440b406
commit
2e6626a4b3
1 changed files with 1 additions and 1 deletions
2
tcc.c
2
tcc.c
|
@ -72,7 +72,7 @@ static void display_info(TCCState *s, int what)
|
|||
")\n", TCC_VERSION);
|
||||
break;
|
||||
case 1:
|
||||
printf("install: %s/\n", s->tcc_lib_path);
|
||||
printf("install: %s\n", s->tcc_lib_path);
|
||||
/* print_paths("programs", NULL, 0); */
|
||||
print_paths("crt", s->crt_paths, s->nb_crt_paths);
|
||||
print_paths("libraries", s->library_paths, s->nb_library_paths);
|
||||
|
|
Loading…
Reference in a new issue