Closed
Bug 3964
Opened 26 years ago
Closed 26 years ago
mozilla/client.mak does not support MOZ_BRANCH
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: law, Assigned: Chris.Yeh)
Details
mozilla/client.mak does CVS checkouts but provides no way to specify a branch
tag for them. This is proving to be a problem when working on the new M3
branch. client.mak should support MOZ_BRANCH.
Here is a patch that seems to work for me:
Index: client.mak
===================================================================
RCS file: /cvsroot/mozilla/client.mak,v
retrieving revision 3.36
diff -r3.36 client.mak
34a35,41
> # Figure out -r option to use (or not).
> !if defined(MOZ_BRANCH)
> CVS_BRANCH_OPT = -r $(MOZ_BRANCH)
> !else
> CVS_BRANCH_OPT =
> !endif
>
40c47
< CVSCO = cvs -d $(CVSROOT) -q co -P
---
> CVSCO = cvs -d $(CVSROOT) -q co -P $(CVS_BRANCH_OPT)
42c49
< CVSCO = cvs -q co -P
---
> CVSCO = cvs -q co -P $(CVS_BRANCH_OPT)
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
added logic to client.mak so that it supports MOZ_BRANCH or MOZ_DATE
also recovered the error-handling and environment variable checking
that is good to have.
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•