aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a0635fb..31ba0b8 100644
--- a/Makefile
+++ b/Makefile
@@ -88,7 +88,7 @@ ifeq ($(with_httpd),YES)
${installbin} -m 0755 -d ${APACHEDIR}
${installbin} -m 0644 -t ${APACHEDIR} extra/wsgi-coupons.conf
@# substitute variables in the apache config file
- ${sedbin} -i -r -e "/XDG_CACHE_HOME/{s@(XDG_CACHE_HOME )[^ ]+@\1${CACHEDIR}/coupons_web.py@}" -e "/WSGIScriptAlias|\<Directory/{s@\/usr\/libexec\/coupons@${LIBEXECDIR}/${APPNAME}@};" ${APACHEDIR}/wsgi-coupons.conf
+ ${sedbin} -i -r -e "/XDG_CACHE_HOME/{s@(XDG_CACHE_HOME )[^ ]+@\1${CACHEDIR}@}" -e "/WSGIScriptAlias|\<Directory/{s@\/usr\/libexec\/coupons@${LIBEXECDIR}/${APPNAME}@};" ${APACHEDIR}/wsgi-coupons.conf
endif
MAN_TXT:=$(wildcard usr/share/man/man*/*.txt)
bgstack15