Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mullvad Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Mullvad Browser
Commits
b528749e
Commit
b528749e
authored
25 years ago
by
slamm%netscape.com
Browse files
Options
Downloads
Patches
Plain Diff
All MOZ_CVS_FLAGS and MOZ_CO_FLAGS to be set in mozconfig.
parent
5f45e727
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
client.mk
+17
-15
17 additions, 15 deletions
client.mk
with
17 additions
and
15 deletions
client.mk
+
17
−
15
View file @
b528749e
...
...
@@ -73,27 +73,15 @@ endif
####################################
# CVS
# Basic CVS flags
ifndef
MOZ_CVS_FLAGS
MOZ_CVS_FLAGS
:=
-q
-z
3
endif
# Anything that we should use on all checkouts
ifdef
MOZ_CO_FLAGS
CVS_CO_FLAGS
:=
$(
MOZ_CO_FLAGS
)
else
CVS_CO_FLAGS
:=
-P
endif
# Add the CVS root to CVS_CO_FLAGS if needed
# Add the CVS root to CVS_FLAGS if needed
CVS_ROOT_IN_TREE
:=
$(
shell
cat
$(
TOPSRCDIR
)
/CVS/Root 2>/dev/null
)
ifneq
($(CVS_ROOT_IN_TREE),)
ifneq
($(CVS_ROOT_IN_TREE),$(CVSROOT))
MOZ_
CVS_FLAGS
:=
$(
MOZ_CVS_FLAGS
)
-d
$(
CVS_ROOT_IN_TREE
)
CVS_FLAGS
:=
$(
CVS_ROOT_IN_TREE
)
endif
endif
CVSCO
:
=
cvs
$(
MOZ_
CVS_FLAGS
)
co
$(
CVS_CO_FLAGS
)
CVSCO
=
cvs
$(
CVS_FLAGS
)
co
$(
CVS_CO_FLAGS
)
CVSCO_LOGFILE
:=
$(
ROOTDIR
)
/cvsco.log
####################################
...
...
@@ -115,6 +103,20 @@ include $(TOPSRCDIR)/.client-defs.mk
####################################
# Options that may come from mozconfig
# MOZ_CVS_FLAGS - Basic CVS flags
ifeq
"$(origin MOZ_CVS_FLAGS)" "undefined"
CVS_FLAGS
:=
$(
CVS_FLAGS
)
-q
-z
3
else
CVS_FLAGS
:=
$(
MOZ_CVS_FLAGS
)
endif
# MOZ_CO_FLAGS - Anything that we should use on all checkouts
ifeq
"$(origin MOZ_CO_FLAGS)" "undefined"
CVS_CO_FLAGS
:=
-P
else
CVS_CO_FLAGS
:=
$(
MOZ_CO_FLAGS
)
endif
ifdef
MOZ_CO_BRANCH
CVSCO
:=
$(
CVSCO
)
-r
$(
MOZ_CO_BRANCH
)
endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment