Skip to content

Commit 16f733a

Browse files
Include trailing slash in prefix instructions
Closes #3786 Signed-off-by: Michael Osthege <[email protected]>
1 parent fa8edb8 commit 16f733a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

path.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ char *interpolate_path(const char *path, int real_home)
741741

742742
#ifdef __MINGW32__
743743
if (path[0] == '/') {
744-
warning(_("encountered old-style '%s' that should be '%%(prefix)%s'"), path, path);
744+
warning(_("encountered old-style '%s' that should be '%%(prefix)/%s'"), path, path);
745745
return system_path(path + 1);
746746
}
747747
#endif

0 commit comments

Comments
 (0)