Skip to content

Commit c9a9e95

Browse files
committed
Configure: Fix compilation error on some systems
See #22793 This typo in a printf format causes some C compilations to fail; others to just warn. However stderr is redirected to /dev/null, so we weren't aware of this issue. When it fails, other issues cause perl to not be usable on the system.
1 parent 9aaaeb6 commit c9a9e95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17724,7 +17724,7 @@ main (const int argc, const char ** argv)
1772417724
/* Here isn't name=value pairs. Find the position of the alternate */
1772517725
const char * alt_pos = strstr(lc_all, alternate);
1772617726
if (! alt_pos) {
17727-
fprintf(stderr, "Couldn't find '%s' in '%'s\n", alternate, lc_all);
17727+
fprintf(stderr, "Couldn't find '%s' in '%s'\n", alternate, lc_all);
1772817728
return 1;
1772917729
}
1773017730

0 commit comments

Comments
 (0)