mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-12 09:28:24 +00:00
Reinstate the following change from 2002-03-22, which was
inadvertently lost on 2002-04-13. (main): Use `sort -o TAGFILE TAGFILE' instead of `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows the latter usage.
This commit is contained in:
parent
2570d28c05
commit
8108640c1e
@ -1255,7 +1255,7 @@ main (argc, argv)
|
||||
if (update)
|
||||
{
|
||||
char cmd[BUFSIZ];
|
||||
sprintf (cmd, "sort %s -o %s", tagfile, tagfile);
|
||||
sprintf (cmd, "sort -o %s %s", tagfile, tagfile);
|
||||
exit (system (cmd));
|
||||
}
|
||||
return GOOD;
|
||||
|
Loading…
Reference in New Issue
Block a user