From: tomo Date: Mon, 15 May 2006 01:34:12 +0000 (+0000) Subject: (concord): Fix problem when the target is bundled. X-Git-Tag: chise-base-0_23~7 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e24c1146919b633c1ab3a1158c511fe463df5481;p=chise%2Fchise-base.git (concord): Fix problem when the target is bundled. (libchise): Likewise. (xemacs-chise): Likewise. (tomoyo-tools): Likewise. (ids): Likewise. (.cvs-login): Fix problem when $(CVS_ROOT) does not use pserver method. --- diff --git a/Makefile.in b/Makefile.in index 1156c39..0d9fc1d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -118,23 +118,30 @@ tar-core: cvs-base-clean get-base: concord libchise xemacs-chise tomoyo-tools ids -concord: .cvs-login +concord: + make .cvs-login cvs -z9 -d $(CVS_ROOT) co concord -libchise: .cvs-login +libchise: + make .cvs-login cvs -z9 -d $(CVS_ROOT) co libchise -xemacs-chise: .cvs-login +xemacs-chise: + make .cvs-login cvs -z9 -d $(CVS_ROOT) co -d xemacs-chise xemacs -tomoyo-tools: .cvs-login +tomoyo-tools: + make .cvs-login cvs -z9 -d $(CVS_ROOT) co tomoyo-tools -ids: .cvs-login +ids: + make .cvs-login cvs -z9 -d $(CVS_ROOT) co ids .cvs-login: - cvs -d $(CVS_ROOT) login + if test "`echo $(CVS_ROOT)|grep '^:pserver:'`" != ""; then \ + cvs -d $(CVS_ROOT) login;\ + fi touch .cvs-login