diff options
author | B. Stack <bgstack15@gmail.com> | 2022-09-10 08:30:04 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-09-10 08:30:04 -0400 |
commit | 6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5 (patch) | |
tree | 7df2d1b27067064b046eabfbba5aeb4dee09548d | |
parent | add makefile, and partial rpm spec (diff) | |
download | coupons-6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5.tar.gz coupons-6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5.tar.bz2 coupons-6b8abd87d1f35b688a2991c59e8bd3e93cfeddc5.zip |
fix makefile install httpd conf
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |