aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-09-10 08:30:04 -0400
committerB. Stack <bgstack15@gmail.com>2022-09-10 08:30:04 -0400
commit6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5 (patch)
tree7df2d1b27067064b046eabfbba5aeb4dee09548d
parentadd makefile, and partial rpm spec (diff)
downloadcoupons-6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5.tar.gz
coupons-6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5.tar.bz2
coupons-6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5.zip
fix makefile install httpd conf
-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