| 208 : ${sbindir:='${exec_prefix}/sbin'} |
207 : ${sbindir:='${exec_prefix}/sbin'} |
| 209 : ${libdir:='${exec_prefix}/lib'} |
208 : ${libdir:='${exec_prefix}/lib'} |
| 210 : ${libexecdir:='${exec_prefix}/libexec'} |
209 : ${libexecdir:='${exec_prefix}/libexec'} |
| 211 : ${datarootdir:='${prefix}/share'} |
210 : ${datarootdir:='${prefix}/share'} |
| 212 : ${datadir:='${datarootdir}'} |
211 : ${datadir:='${datarootdir}'} |
| 213 : ${sysconfdir:='${prefix}/etc'} |
|
| 214 : ${sharedstatedir:='${prefix}/com'} |
212 : ${sharedstatedir:='${prefix}/com'} |
| 215 : ${localstatedir:='${prefix}/var'} |
213 if [ -z "$sysconfdir" ]; then |
| 216 : ${runstatedir:='${localstatedir}/run'} |
214 if [ "$prefix" = '/usr' ]; then |
| |
215 sysconfdir='/etc' |
| |
216 elif [ "$prefix" = '/opt' ]; then |
| |
217 sysconfdir='/etc/opt' |
| |
218 else |
| |
219 sysconfdir='${prefix}/etc' |
| |
220 fi |
| |
221 fi |
| |
222 if [ -z "$localstatedir" ]; then |
| |
223 if [ "$prefix" = '/usr' ]; then |
| |
224 localstatedir='/var' |
| |
225 elif [ "$prefix" = '/opt' ]; then |
| |
226 localstatedir='/var/opt' |
| |
227 else |
| |
228 localstatedir='${prefix}/var' |
| |
229 fi |
| |
230 fi |
| |
231 if [ -z "$runstatedir" ]; then |
| |
232 if [ "$prefix" = '/usr' ]; then |
| |
233 runstatedir='/var/run' |
| |
234 elif [ "$prefix" = '/opt' ]; then |
| |
235 runstatedir='/var/run/opt' |
| |
236 else |
| |
237 runstatedir='${prefix}/var' |
| |
238 fi |
| |
239 fi |
| 217 : ${includedir:='${prefix}/include'} |
240 : ${includedir:='${prefix}/include'} |
| 218 : ${infodir:='${datarootdir}/info'} |
241 : ${infodir:='${datarootdir}/info'} |
| 219 : ${mandir:='${datarootdir}/man'} |
242 : ${mandir:='${datarootdir}/man'} |
| 220 : ${localedir:='${datarootdir}/locale'} |
243 : ${localedir:='${datarootdir}/locale'} |
| 221 |
244 |