| 234 : ${sbindir:='${exec_prefix}/sbin'} |
234 : ${sbindir:='${exec_prefix}/sbin'} |
| 235 : ${libdir:='${exec_prefix}/lib'} |
235 : ${libdir:='${exec_prefix}/lib'} |
| 236 : ${libexecdir:='${exec_prefix}/libexec'} |
236 : ${libexecdir:='${exec_prefix}/libexec'} |
| 237 : ${datarootdir:='${prefix}/share'} |
237 : ${datarootdir:='${prefix}/share'} |
| 238 : ${datadir:='${datarootdir}'} |
238 : ${datadir:='${datarootdir}'} |
| 239 : ${sysconfdir:='${prefix}/etc'} |
|
| 240 : ${sharedstatedir:='${prefix}/com'} |
239 : ${sharedstatedir:='${prefix}/com'} |
| 241 : ${localstatedir:='${prefix}/var'} |
240 if [ -z "$sysconfdir" ]; then |
| 242 : ${runstatedir:='${localstatedir}/run'} |
241 if [ "$prefix" = '/usr' ]; then |
| |
242 sysconfdir='/etc' |
| |
243 elif [ "$prefix" = '/opt' ]; then |
| |
244 sysconfdir='/etc/opt' |
| |
245 else |
| |
246 sysconfdir='${prefix}/etc' |
| |
247 fi |
| |
248 fi |
| |
249 if [ -z "$localstatedir" ]; then |
| |
250 if [ "$prefix" = '/usr' ]; then |
| |
251 localstatedir='/var' |
| |
252 elif [ "$prefix" = '/opt' ]; then |
| |
253 localstatedir='/var/opt' |
| |
254 else |
| |
255 localstatedir='${prefix}/var' |
| |
256 fi |
| |
257 fi |
| |
258 if [ -z "$runstatedir" ]; then |
| |
259 if [ "$prefix" = '/usr' ]; then |
| |
260 runstatedir='/var/run' |
| |
261 elif [ "$prefix" = '/opt' ]; then |
| |
262 runstatedir='/var/run/opt' |
| |
263 else |
| |
264 runstatedir='${prefix}/var' |
| |
265 fi |
| |
266 fi |
| 243 : ${includedir:='${prefix}/include'} |
267 : ${includedir:='${prefix}/include'} |
| 244 : ${infodir:='${datarootdir}/info'} |
268 : ${infodir:='${datarootdir}/info'} |
| 245 : ${mandir:='${datarootdir}/man'} |
269 : ${mandir:='${datarootdir}/man'} |
| 246 : ${localedir:='${datarootdir}/locale'} |
270 : ${localedir:='${datarootdir}/locale'} |
| 247 |
271 |