Small bug in Apache2 custom config files

tillo

Verified User
Joined
Oct 28, 2007
Messages
862
Location
Switzerland
See build 1.1, line 596 and following:
Code:
AP2CONFDIR=${WORKDIR}/configure/ap2/conf
AP2CUSTOMCONFDIR=0
if [ -d custom/configure/ap2/conf ]; then
        [b]AP2CUSTOMCONFDIR=custom/configure/ap1/conf[/b]
fi

Should be:
Code:
AP2CONFDIR=${WORKDIR}/configure/ap2/conf
AP2CUSTOMCONFDIR=0
if [ -d custom/configure/ap2/conf ]; then
        [b]AP2CUSTOMCONFDIR=custom/configure/ap2/conf[/b]
fi
 
Back
Top