Skip to content
Snippets Groups Projects
Commit 234ab335 authored by deuce's avatar deuce
Browse files

-z options cause cvs checkout to hang with client version 1.11.1p1 and

server version 1.11.2
parent bda0c79d
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,7 @@ else
endif
# CVS checkout command-line
CVS_CO = @cd $(SBBSDIR); cvs -z3 -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs co
CVS_CO = @cd $(SBBSDIR); cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs co
$(SBBSDIR)/ctrl: cvslogin
ifndef NOCVS
......
......@@ -98,7 +98,7 @@ struct {
#define MAKEFILE "/tmp/SBBSmakefile"
#define CVSCOMMAND "cvs -z3 "
#define CVSCOMMAND "cvs "
char **opt;
char tmp[256];
......@@ -420,7 +420,7 @@ void install_sbbs(struct dist_t *release,struct server_ent_t *server) {
printf("Could not checkout install makefile.\n");
exit(EXIT_FAILURE);
}
sprintf(cmd,"gmake -f install/GNUmakefile");
sprintf(cmd,"gmake install -f install/GNUmakefile");
if(system(cmd)) {
printf("'Nuff said.\n");
exit(EXIT_FAILURE);
......@@ -486,7 +486,6 @@ get_distlist(void)
allocfail(sizeof(struct dist_t));
while((list->gets(in_line,sizeof(in_line),list))!=NULL) {
printf("Parsing: %s",in_line);
i=strlen(in_line);
while(i>0 && in_line[i]<=' ')
in_line[i--]=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment