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
80dddfd9
Commit
80dddfd9
authored
13 years ago
by
Kyle Huey
Browse files
Options
Downloads
Plain Diff
Merge b-s to m-c.
parents
e9a67b13
fd7283a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/autoconf/mozconfig-find
+22
-1
22 additions, 1 deletion
build/autoconf/mozconfig-find
build/win32/Makefile.in
+2
-0
2 additions, 0 deletions
build/win32/Makefile.in
with
24 additions
and
1 deletion
build/autoconf/mozconfig-find
+
22
−
1
View file @
80dddfd9
...
...
@@ -46,6 +46,27 @@
#
topsrcdir
=
$1
abspath
()
{
if
uname
-s
|
grep
-q
MINGW
;
then
# We have no way to figure out whether we're in gmake or pymake right
# now. gmake gives us Unix-style paths while pymake gives us Windows-style
# paths, so attempt to handle both.
regexes
=
'^\([A-Za-z]:\|\\\\\|\/\) ^\/'
else
regexes
=
'^\/'
fi
for
regex
in
$regexes
;
do
if
echo
$1
|
grep
-q
$regex
;
then
echo
$1
exit
0
fi
done
# If we're at this point, we have a relative path
echo
`
pwd
`
/
$1
}
for
_config
in
"
$MOZCONFIG
"
\
"
$MOZ_MYCONFIG
"
do
...
...
@@ -66,7 +87,7 @@ for _config in "$MOZCONFIG" \
"
$HOME
/.mozmyconfig.sh"
do
if
test
-f
"
$_config
"
;
then
echo
"
$_config
"
;
echo
`
abspath
$_config
`
exit
0
fi
done
This diff is collapsed.
Click to expand it.
build/win32/Makefile.in
+
2
−
0
View file @
80dddfd9
...
...
@@ -42,6 +42,8 @@ VPATH = @srcdir@
include
$(DEPTH)/config/autoconf.mk
NO_PROFILE_GUIDED_OPTIMIZE
=
1
ifdef
ENABLE_TESTS
ifdef
_MSC_VER
...
...
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