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