Changeset 274233 in webkit
- Timestamp:
- Mar 10, 2021, 1:20:41 PM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
gtk/install-dependencies (modified) (1 diff)
-
wpe/install-dependencies (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r274228 r274233 1 2021-03-10 Adrian Perez de Castro <aperez@igalia.com> 2 3 [WPE][GTK] Running Tools/gtk/install-dependencies installs too many packages on Debian/Ubuntu 4 https://bugs.webkit.org/show_bug.cgi?id=223036 5 6 Reviewed by Don Olmstead. 7 8 Avoid installing unneeded packages by passing --no-install-recommends to apt-get 9 invocations. While at it, also make sure to always pass -y to make the installation 10 non-interactive. 11 12 * gtk/install-dependencies: 13 * wpe/install-dependencies: 14 1 15 2021-03-10 Brent Fulgham <bfulgham@apple.com> 2 16 -
trunk/Tools/gtk/install-dependencies
r273970 r274233 260 260 gstreamer1.0-pulseaudio" 261 261 262 apt-get install $packages262 apt-get install -y --no-install-recommends $packages 263 263 264 264 # Ubuntu Bionic doesn't ship pipenv. So fallback to the pip3 install path. 265 265 if apt-cache show pipenv &>/dev/null; then 266 apt-get install pipenv266 apt-get install -y --no-install-recommends pipenv 267 267 else 268 apt-get install -y python3-pip268 apt-get install -y --no-install-recommends python3-pip 269 269 pip3 install pipenv 270 270 fi -
trunk/Tools/wpe/install-dependencies
r272365 r274233 163 163 gstreamer1.0-pulseaudio" 164 164 165 apt-get install $packages165 apt-get install -y --no-install-recommends $packages 166 166 167 167 # Ubuntu Bionic doesn't ship pipenv. So fallback to the pip3 install path. 168 168 if apt-cache show pipenv &>/dev/null; then 169 apt-get install pipenv169 apt-get install -y --no-install-recommends pipenv 170 170 else 171 apt-get install -y python3-pip171 apt-get install -y --no-install-recommends python3-pip 172 172 pip3 install pipenv 173 173 fi
Note:
See TracChangeset
for help on using the changeset viewer.