aboutsummaryrefslogtreecommitdiff
path: root/extra/Makefile
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-15 10:19:09 -0500
committerB Stack <bgstack15@gmail.com>2022-02-15 10:22:01 -0500
commit1a0fbf8853496ac8725e58a1e905fb0fffc5093e (patch)
tree805bbfde5d58859ff37b03c76fc8280e59040b02 /extra/Makefile
parentupdate doc (diff)
downloadstackbin-1a0fbf8853496ac8725e58a1e905fb0fffc5093e.tar.gz
stackbin-1a0fbf8853496ac8725e58a1e905fb0fffc5093e.tar.bz2
stackbin-1a0fbf8853496ac8725e58a1e905fb0fffc5093e.zip
fix wsgi pidfile, user homedir, and INI loading
Diffstat (limited to 'extra/Makefile')
-rw-r--r--extra/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/Makefile b/extra/Makefile
index 785d2df..d55b8c6 100644
--- a/extra/Makefile
+++ b/extra/Makefile
@@ -24,7 +24,7 @@ LIBEXECDIR = $(DESTDIR)$(prefix)/libexec
SHAREDIR = $(DESTDIR)$(prefix)/share
DOCDIR = $(SHAREDIR)/doc/$(APPNAME)
APPDIR = $(SHAREDIR)/$(APPNAME)
-APPVARDIR = $(DESTDIR)/var/www/$(APPNAME)
+APPVARDIR = $(DESTDIR)/var/$(APPNAME)
MANDIR = $(SHAREDIR)/man
SYSVDIR = $(SYSCONFDIR)/init.d
SYSDDIR = $(DESTDIR)$(prefix)/lib/systemd/system
bgstack15