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
d9e03975
Commit
d9e03975
authored
17 years ago
by
neil@parkwaycc.co.uk
Browse files
Options
Downloads
Patches
Plain Diff
Bug 375828 RUN_AUTOCONF_LOCALLY doesn't if CVS checkout failed r=bsmedberg
parent
eb5ba3e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
client.mk
+19
-13
19 additions, 13 deletions
client.mk
with
19 additions
and
13 deletions
client.mk
+
19
−
13
View file @
d9e03975
...
...
@@ -803,6 +803,11 @@ real_checkout:
`egrep
-c
'^(U|C) mozilla/security/(nss|coreconf)'
$(CVSCO_LOGFILE)
2>/dev/null`
!=
0;
then
\
touch
$(TOPSRCDIR)/security/manager/.nss.checkout;
\
fi
ifdef
RUN_AUTOCONF_LOCALLY
cd
$(ROOTDIR)
&&
\
$(RM)
-f
mozilla/configure
mozilla/nsprpub/configure
\
mozilla/directory/c-sdk/configure
endif
# @: Check the log for conflicts. ;
@
conflicts
=
`
egrep
"^C "
$(
CVSCO_LOGFILE
)
`
;
\
if
test
"
$$
conflicts"
;
then
\
...
...
@@ -812,12 +817,6 @@ real_checkout:
false
;
\
else
true
;
\
fi
ifdef
RUN_AUTOCONF_LOCALLY
@echo
Generating
configures
using
$(AUTOCONF)
;
\
cd
$(TOPSRCDIR)
&&
$(AUTOCONF)
&&
\
cd
$(TOPSRCDIR)/nsprpub
&&
$(AUTOCONF)
&&
\
cd
$(TOPSRCDIR)/directory/c-sdk
&&
$(AUTOCONF)
endif
fast-update
:
# @: Backup the last checkout log.
...
...
@@ -857,6 +856,11 @@ real_fast-update:
@if
test
`egrep
-c
'^(U|C) mozilla/security/(nss|coreconf)'
$(CVSCO_LOGFILE)
2>/dev/null`
!=
0;
then
\
touch
$(TOPSRCDIR)/security/manager/.nss.checkout;
\
fi
ifdef
RUN_AUTOCONF_LOCALLY
cd
$(ROOTDIR)
&&
\
$(RM)
-f
mozilla/configure
mozilla/nsprpub/configure
\
mozilla/directory/c-sdk/configure
endif
# @: Check the log for conflicts. ;
@
conflicts
=
`
egrep
"^C "
$(
CVSCO_LOGFILE
)
`
;
\
if
test
"
$$
conflicts"
;
then
\
...
...
@@ -866,12 +870,6 @@ real_fast-update:
false
;
\
else
true
;
\
fi
ifdef
RUN_AUTOCONF_LOCALLY
@echo
Generating
configures
using
$(AUTOCONF)
;
\
cd
$(TOPSRCDIR)
&&
$(AUTOCONF)
&&
\
cd
$(TOPSRCDIR)/nsprpub
&&
$(AUTOCONF)
&&
\
cd
$(TOPSRCDIR)/directory/c-sdk
&&
$(AUTOCONF)
endif
CVSCO_LOGFILE_L10N
:=
$(
ROOTDIR
)
/cvsco-l10n.log
CVSCO_LOGFILE_L10N
:=
$(
shell
echo
$(
CVSCO_LOGFILE_L10N
)
|
sed
s%//%/%
)
...
...
@@ -999,6 +997,14 @@ EXTRA_CONFIG_DEPS := \
$(TOPSRCDIR)/configure
:
$(TOPSRCDIR)/configure.in $(EXTRA_CONFIG_DEPS)
@
echo
Generating
$@
using autoconf
cd
$(
TOPSRCDIR
);
$(
AUTOCONF
)
$(TOPSRCDIR)/nsprpub/configure
:
$(TOPSRCDIR)/nsprpub/configure.in $(EXTRA_CONFIG_DEPS)
@
echo
Generating
$@
using autoconf
cd
$(
TOPSRCDIR
)
/nsprpub
;
$(
AUTOCONF
)
$(TOPSRCDIR)/directory/c-sdk/configure
:
$(TOPSRCDIR)/directory/c-sdk/configure.in $(EXTRA_CONFIG_DEPS)
@
echo
Generating
$@
using autoconf
cd
$(
TOPSRCDIR
)
/directory/c-sdk
;
$(
AUTOCONF
)
endif
CONFIG_STATUS_DEPS
:=
\
...
...
@@ -1026,7 +1032,7 @@ ifdef MOZ_TOOLS
CONFIGURE
=
$(
TOPSRCDIR
)
/configure
endif
configure
::
configure
::
$(TOPSRCDIR)/configure $(TOPSRCDIR)/nsprpub/configure $(TOPSRCDIR)/directory/c-sdk/configure
ifdef
MOZ_BUILD_PROJECTS
@
if
test
!
-d
$(
MOZ_OBJDIR
);
then
$(
MKDIR
)
$(
MOZ_OBJDIR
);
else
true
;
fi
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