FreeBSD Bugzilla – Attachment 231479 Details for
Bug 261642
www/firefox: Update to 97 (phase: Beta, ETA: 2022-02-08)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
depot.patch
depot.patch (text/plain), 1.56 KB, created by
Ghost
on 2022-02-01 01:01:03 UTC
(
hide
)
Description:
depot.patch
Filename:
MIME Type:
Creator:
Ghost
Created:
2022-02-01 01:01:03 UTC
Size:
1.56 KB
patch
obsolete
>diff --git a/cipd b/cipd >index 06fdbf29..8348a15e 100755 >--- a/cipd >+++ b/cipd >@@ -21,6 +21,9 @@ case "${UNAME}" in > linux) > OS="${UNAME}" > ;; >+ freebsd) >+ OS="${UNAME}" >+ ;; > cygwin*) > OS=windows > CYGWIN=true >diff --git a/gclient b/gclient >index cb1d4678..9686c5de 100755 >--- a/gclient >+++ b/gclient >@@ -28,11 +28,11 @@ PATH=$PATH:$base_dir > > if [[ $GCLIENT_PY3 == 1 ]]; then > # Explicitly run on Python 3 >- PYTHONDONTWRITEBYTECODE=1 exec vpython3 "$base_dir/gclient.py" "$@" >+ PYTHONDONTWRITEBYTECODE=1 exec python3 "$base_dir/gclient.py" "$@" > elif [[ $GCLIENT_PY3 == 0 ]]; then > # Explicitly run on Python 2 >- PYTHONDONTWRITEBYTECODE=1 exec vpython "$base_dir/gclient.py" "$@" >+ PYTHONDONTWRITEBYTECODE=1 exec python "$base_dir/gclient.py" "$@" > else > # Run on Python 3, allows default to be flipped. >- PYTHONDONTWRITEBYTECODE=1 exec vpython3 "$base_dir/gclient.py" "$@" >+ PYTHONDONTWRITEBYTECODE=1 exec python3 "$base_dir/gclient.py" "$@" > fi >diff --git a/gclient.py b/gclient.py >index ba75b782..81f31a17 100755 >--- a/gclient.py >+++ b/gclient.py >@@ -1277,6 +1277,7 @@ _PLATFORM_MAPPING = { > 'linux': 'linux', > 'win32': 'win', > 'aix6': 'aix', >+ 'freebsd' : 'freebsd', > } > > >diff --git a/gclient_utils.py b/gclient_utils.py >index 65223a73..0ebf9cac 100644 >--- a/gclient_utils.py >+++ b/gclient_utils.py >@@ -748,6 +748,8 @@ def GetMacWinAixOrLinux(): > return 'mac' > elif sys.platform.startswith('aix'): > return 'aix' >+ elif sys.platform.startswith('freebsd'): >+ return 'freebsd' > raise Error('Unknown platform: ' + sys.platform) > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 261642
:
231478
| 231479 |
231480