rse 98/04/19 23:30:59
Modified: . configure Log: Bugfix: "libexecdir" is based on "exec_prefix", so the relative variant has to use "exec_prefix" when trying to reduce the prefix. Revision Changes Path 1.12 +1 -1 apache-1.3/configure Index: configure =================================================================== RCS file: /export/home/cvs/apache-1.3/configure,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- configure 1998/04/19 16:03:38 1.11 +++ configure 1998/04/20 06:30:59 1.12 @@ -646,7 +646,7 @@ ## localstatedir_relative=`echo $localstatedir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'` sysconfdir_relative=`echo $sysconfdir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'` -libexecdir_relative=`echo $libexecdir | sed -e "s:^$prefix/*::" -e 's:\(.\)$:\1/:'` +libexecdir_relative=`echo $libexecdir | sed -e "s:^$exec_prefix/*::" -e 's:\(.\)$:\1/:'` ## ## check and debug
