|
From: Hans-Bernhard B. <br...@us...> - 2003-04-29 14:14:00
|
Update of /cvsroot/cscope/cscope/src
In directory sc8-pr-cvs1:/tmp/cvs-serv26562/src
Modified Files:
build.c
Log Message:
Remove option -y from call to sort(1)
Index: build.c
===================================================================
RCS file: /cvsroot/cscope/cscope/src/build.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** build.c 22 Nov 2001 17:38:19 -0000 1.4
--- build.c 29 Apr 2003 14:13:53 -0000 1.5
***************
*** 444,448 ****
(void) fstat(fileno(postings), &statstruct);
(void) fclose(postings);
! (void) sprintf(sortcommand, "env LC_ALL=C sort -y -T %s %s", tmpdir, temp1);
if ((postings = mypopen(sortcommand, "r")) == NULL) {
(void) fprintf(stderr, "cscope: cannot open pipe to sort command\n");
--- 444,448 ----
(void) fstat(fileno(postings), &statstruct);
(void) fclose(postings);
! (void) sprintf(sortcommand, "env LC_ALL=C sort -T %s %s", tmpdir, temp1);
if ((postings = mypopen(sortcommand, "r")) == NULL) {
(void) fprintf(stderr, "cscope: cannot open pipe to sort command\n");
|