Changeset 72908 in vbox for trunk/tools
- Timestamp:
- Jul 5, 2018 8:38:20 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/prerequisites-rpm.sh
r72787 r72908 19 19 # What this script does: 20 20 usage_msg="\ 21 Usage: `basename ${0}` [-- no-docs]21 Usage: `basename ${0}` [--with-docs] 22 22 23 Install the dependencies needed for building VirtualBox on a Linux 24 system. Initial support for Enterprise Linux derivatives, additional 25 distributions will be added as needed. There are no plans to add 26 support for or to accept patches for distributions we do not package. 27 The \`--no-docs\' parameter is used to prevent installation of TeX 28 packages. Installing TeX is not supported on EL5, so the flag is 29 ignored there." 23 Install the dependencies needed for building VirtualBox on an RPM-based Linux 24 system. Additional distributions will be added as needed. There are no plans 25 to add support for or to accept patches for distributions we do not package. 26 The \`--docs\' parameter is to install the packages needed for building 27 documentation. It will also be implemented per distribution as needed." 30 28 31 29 # To repeat: there are no plans to add support for or to accept patches 32 # for distributions we do bot package.30 # for distributions we do not package. 33 31 34 unset NODOCS32 unset WITHDOCS 35 33 egrepignore=\ 36 34 "Setting up Install Process|already installed and latest version|Nothing to do" … … 44 42 while test -n "${1}"; do 45 43 case "${1}" in 46 -- no-docs)47 NODOCS=144 --with-docs) 45 WITHDOCS=1 48 46 shift ;; 49 47 -h|--help) … … 55 53 done 56 54 57 LC_ALL=C 58 export LC_ALL 55 export LC_ALL=C 59 56 PATH=/sbin:/usr/sbin:$PATH 60 57 … … 74 71 glibc-static zlib-static glibc-devel.i686 libstdc++.i686 \ 75 72 qt5-qttools-devel qt5-qtx11extras-devel | egrep -v "${egrepignore}" 76 if test - z "$NODOCS"; then73 if test -n "$WITHDOCS"; then 77 74 yum install texlive-latex texlive-latex-bin texlive-ec \ 78 75 texlive-pdftex-def texlive-fancybox device-mapper-devel |
Note:
See TracChangeset
for help on using the changeset viewer.