WebKit Bugzilla
Attachment 371812 Details for
Bug 173801
: [GTK+] Homebrew is not allowed to run any script under sudo.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-173801-20190611054823.patch (text/plain), 1.12 KB, created by
Alexey Shvayka
on 2019-06-10 19:48:24 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Alexey Shvayka
Created:
2019-06-10 19:48:24 PDT
Size:
1.12 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 246302) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,15 @@ >+2019-06-10 Alexey Shvayka <shvaikalesh@gmail.com> >+ >+ AX: Homebrew is not allowed to run any script under sudo. >+ https://bugs.webkit.org/show_bug.cgi?id=173801 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Latest versions of Homebrew throw an error when run as root. >+ Dependencies are successfully installed w/o `sudo` on macOS, so skip it. >+ >+ * gtk/install-dependencies: >+ > 2019-06-10 Sam Weinig <weinig@apple.com> > > Remove Dashboard support >Index: Tools/gtk/install-dependencies >=================================================================== >--- Tools/gtk/install-dependencies (revision 246067) >+++ Tools/gtk/install-dependencies (working copy) >@@ -1,7 +1,7 @@ > #!/usr/bin/env bash > >-# This script needs to be run with root rights. >-if [ $UID -ne 0 ]; then >+# On Linux systems, this script needs to be run with root rights. >+if [ `uname` != "Darwin" ] && [ $UID -ne 0 ]; then > sudo $0 > exit 0 > fi
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
|
Formatted Diff
|
Diff
Attachments on
bug 173801
: 371812