PDA

View Full Version : Small bug in Apache2 custom config files



tillo
03-05-2009, 10:23 AM
See build 1.1, line 596 and following:


AP2CONFDIR=${WORKDIR}/configure/ap2/conf
AP2CUSTOMCONFDIR=0
if [ -d custom/configure/ap2/conf ]; then
AP2CUSTOMCONFDIR=custom/configure/ap1/conf
fi


Should be:


AP2CONFDIR=${WORKDIR}/configure/ap2/conf
AP2CUSTOMCONFDIR=0
if [ -d custom/configure/ap2/conf ]; then
AP2CUSTOMCONFDIR=custom/configure/ap2/conf
fi

smtalk
03-12-2009, 01:27 AM
It has been fixed. Thank you for the report!