If the DESTDIR variable is set, assume that packaging is happening
so don't try to write to the apache configuration file.
Signed-off-by: Ben Webb <bjwebb67@googlemail.com>
install-exec-local:
d=`$(APXS2) -q SYSCONFDIR` && \
- if ! grep mod_placeholder $${d}/httpd.conf 2>&1 >/dev/null ; \
+ if ! grep mod_placeholder $${d}/httpd.conf 2>&1 >/dev/null && [ "$DESTDIR" == "" ] ; \
then echo -e "#\n#LoadModule mod_placeholder /usr/lib/apache2/modules/mod_placeholder.so" \
>> $${d}/httpd.conf; \
fi