Changeset c7ecbc2 for auto/options
- Timestamp:
- 06/12/09 00:31:39 (15 years ago)
- Branches:
- master
- Children:
- 25b4022
- Parents:
- 9a36761
- git-author:
- Mateusz Hromada <ruanda@…> (06/12/09 00:31:39)
- git-committer:
- Mateusz Hromada <ruanda@…> (06/12/09 00:31:39)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
auto/options
r9a36761 rc7ecbc2 11 11 if [ -z "$PROJECT_MAIL" ]; then PROJECT_MAIL=$DEFAULT_PROJECT_MAIL; fi 12 12 13 if [ -z "$INSTALL" ]; then INSTALL=$DEFAULT_INSTALL; fi 13 14 if [ -z "$SHELL" ]; then SHELL=$DEFAULT_SHELL; fi 14 15 if [ -z "$CC" ]; then CC=$DEFAULT_CC; fi … … 42 43 if [ -z "$bindir" ]; then bindir=$DEFAULT_bindir; fi 43 44 if [ -z "$sbindir" ]; then sbindir=$DEFAULT_sbindir; fi 45 if [ -z "$libexecdir" ]; then libexecdir=$DEFAULT_libexecdir; fi 44 46 if [ -z "$datarootdir" ]; then datarootdir=$DEFAULT_datarootdir; fi 45 47 if [ -z "$datadir" ]; then datadir=$DEFAULT_datadir; fi … … 47 49 if [ -z "$sharedstatedir" ]; then sharedstatedir=$DEFAULT_sharedstatedir; fi 48 50 if [ -z "$localstatedir" ]; then localstatedir=$DEFAULT_localstatedir; fi 51 if [ -z "$docdir" ]; then docdir=$DEFAULT_docdir; fi 52 if [ -z "$infodir" ]; then infodir=$DEFAULT_infodir; fi 53 if [ -z "$htmldir" ]; then htmldir=$DEFAULT_htmldir; fi 54 if [ -z "$dvidir" ]; then dvidir=$DEFAULT_dvidir; fi 55 if [ -z "$pdfdir" ]; then pdfdir=$DEFAULT_pdfdir; fi 56 if [ -z "$psdir" ]; then psdir=$DEFAULT_psdir; fi 57 if [ -z "$libdir" ]; then libdir=$DEFAULT_libdir; fi 58 if [ -z "$localedir" ]; then localedir=$DEFAULT_localedir; fi 59 if [ -z "$mandir" ]; then mandir=$DEFAULT_mandir; fi 60 if [ -z "$man1dir" ]; then man1dir=$DEFAULT_man1dir; fi 61 if [ -z "$man2dir" ]; then man2dir=$DEFAULT_man2dir; fi 62 if [ -z "$man3dir" ]; then man3dir=$DEFAULT_man3dir; fi 63 if [ -z "$man4dir" ]; then man4dir=$DEFAULT_man4dir; fi 64 if [ -z "$man5dir" ]; then man5dir=$DEFAULT_man5dir; fi 65 if [ -z "$man6dir" ]; then man6dir=$DEFAULT_man6dir; fi 66 if [ -z "$man7dir" ]; then man7dir=$DEFAULT_man7dir; fi 67 if [ -z "$man8dir" ]; then man8dir=$DEFAULT_man8dir; fi 68 if [ -z "$man9dir" ]; then man9dir=$DEFAULT_man9dir; fi 69 if [ -z "$manext" ]; then manext=$DEFAULT_manext; fi 70 if [ -z "$man1ext" ]; then man1ext=$DEFAULT_man1ext; fi 71 if [ -z "$man2ext" ]; then man2ext=$DEFAULT_man2ext; fi 72 if [ -z "$man3ext" ]; then man3ext=$DEFAULT_man3ext; fi 73 if [ -z "$man4ext" ]; then man4ext=$DEFAULT_man4ext; fi 74 if [ -z "$man5ext" ]; then man5ext=$DEFAULT_man5ext; fi 75 if [ -z "$man6ext" ]; then man6ext=$DEFAULT_man6ext; fi 76 if [ -z "$man7ext" ]; then man7ext=$DEFAULT_man7ext; fi 77 if [ -z "$man8ext" ]; then man8ext=$DEFAULT_man8ext; fi 78 if [ -z "$man9ext" ]; then man9ext=$DEFAULT_man9ext; fi 79 49 80 50 81 for option … … 60 91 --quiet) quiet=yes ;; 61 92 93 DESTDIR=*) DESTDIR="$value" ;; 62 94 --prefix=*) prefix="$value" ;; 63 95 --exec-prefix=*) exec_prefix="$value" ;; 64 96 --bindir=*) bindir="$value" ;; 65 97 --sbindir=*) sbindir="$value" ;; 98 --libexecdir=*) libexecdir="$value" ;; 66 99 --datarootdir=*) datarootdir="$value" ;; 67 100 --datadir=*) datadir="$value" ;; … … 69 102 --sharedstatedir=*) sharedstatedir="$value" ;; 70 103 --localstatedir=*) localstatedir="$value" ;; 71 104 --docdir=*) docdir="$value" ;; 105 --infodir=*) infodir="$value" ;; 106 --htmldir=*) htmldir="$value" ;; 107 --dvidir=*) dvidir="$value" ;; 108 --pdfdir=*) pdfdir="$value" ;; 109 --psdir=*) psdir="$value" ;; 110 --libdir=*) libdir="$value" ;; 111 --localedir=*) localedir="$value" ;; 112 --mandir=*) mandir="$value" ;; 113 --man1dir=*) man1dir="$value" ;; 114 --man2dir=*) man2dir="$value" ;; 115 --man3dir=*) man3dir="$value" ;; 116 --man4dir=*) man4dir="$value" ;; 117 --man5dir=*) man5dir="$value" ;; 118 --man6dir=*) man6dir="$value" ;; 119 --man7dir=*) man7dir="$value" ;; 120 --man8dir=*) man8dir="$value" ;; 121 --man9dir=*) man9dir="$value" ;; 122 --manext=*) manext="$value" ;; 123 --man1ext=*) man1ext="$value" ;; 124 --man2ext=*) man2ext="$value" ;; 125 --man3ext=*) man3ext="$value" ;; 126 --man4ext=*) man4ext="$value" ;; 127 --man5ext=*) man5ext="$value" ;; 128 --man6ext=*) man6ext="$value" ;; 129 --man7ext=*) man7ext="$value" ;; 130 --man8ext=*) man8ext="$value" ;; 131 --man9ext=*) man9ext="$value" ;; 132 133 INSTALL=*) INSTALL="$value" ;; 72 134 SHELL=*) SHELL="$value" ;; 73 135 CC=*) CC="$value" ;; … … 89 151 DVIPS=*) DVIPS="$value" ;; 90 152 91 92 153 CFLAGS=*) CFLAGS="$value" ;; 93 154 LDFLAGS=*) LDFLAGS="$value" ;; … … 124 185 --bindir=PATH user executables 125 186 --sbindir=PATH system admin executables 187 --libexecdir=PATH program executables 126 188 --datarootdir=PATH read-only arch.-independent data root 127 189 --datadir=PATH read-only architecture-independent data … … 129 191 --sharedstatedir=PATH modifiable architecture-independent data 130 192 --localstatedir=PATH modifiable single-machine data 193 --docdir=DIR documentation root 194 --infodir=DIR info documentation 195 --htmldir=DIR html documentation 196 --dvidir=DIR dvi documentation 197 --pdfdir=DIR pdf documentation 198 --psdir=DIR ps documentation 199 --libdir=DIR object code libraries 200 --localedir=DIR locale-dependent data 201 --mandir=DIR man documentation 202 --man1dir=DIR section 1 man documentation 203 --man2dir=DIR section 2 man documentation 204 --man3dir=DIR section 3 man documentation 205 --man4dir=DIR section 4 man documentation 206 --man5dir=DIR section 5 man documentation 207 --man6dir=DIR section 6 man documentation 208 --man7dir=DIR section 7 man documentation 209 --man8dir=DIR section 8 man documentation 210 --man9dir=DIR section 9 man documentation 211 --manext=EXT man extension 212 --man1ext=EXT section 1 man extension 213 --man2ext=EXT section 2 man extension 214 --man3ext=EXT section 3 man extension 215 --man4ext=EXT section 4 man extension 216 --man5ext=EXT section 5 man extension 217 --man6ext=EXT section 6 man extension 218 --man7ext=EXT section 7 man extension 219 --man8ext=EXT section 8 man extension 220 --man9ext=EXT section 9 man extension 131 221 132 222 Some influential environment variables: 133 223 224 INSTALL install command 134 225 SHELL shell command 135 226 CC C compiler command
Note: See TracChangeset
for help on using the changeset viewer.