aboutsummaryrefslogtreecommitdiff
path: root/extra/fuss-el7.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-02-04 10:57:29 -0500
committerB Stack <bgstack15@gmail.com>2021-02-04 10:57:29 -0500
commit3ce7dcfcb6f59bf802b0101bf183ae64c66ee3e1 (patch)
tree7aae021def11bb129b35fabf5f832334641177e4 /extra/fuss-el7.patch
parentinitial commit (diff)
downloadfuss-3ce7dcfcb6f59bf802b0101bf183ae64c66ee3e1.tar.gz
fuss-3ce7dcfcb6f59bf802b0101bf183ae64c66ee3e1.tar.bz2
fuss-3ce7dcfcb6f59bf802b0101bf183ae64c66ee3e1.zip
fix some building details for el7
Diffstat (limited to 'extra/fuss-el7.patch')
-rw-r--r--extra/fuss-el7.patch7
1 files changed, 3 insertions, 4 deletions
diff --git a/extra/fuss-el7.patch b/extra/fuss-el7.patch
index 3a9ceed..199a9be 100644
--- a/extra/fuss-el7.patch
+++ b/extra/fuss-el7.patch
@@ -1,13 +1,12 @@
Summary: Make changes necessary for this package to work on CentOS 7
Message: Correct name of python36 wsgi plugin, and disable icons
-Date: 2021-01-05
+Date: 2021-02-04
diff master/fuss.wsgi.ini.example el7/fuss.wsgi.ini.example
index 42ebfe2..75b59bb 100644
--- a/fuss.wsgi.ini.example
+++ b/fuss.wsgi.ini.example
-@@ -2,7 +2,7 @@
- # References:
- # https://uwsgi-docs.readthedocs.io/en/latest/Logging.html
+@@ -1,6 +1,6 @@
+ # call with: uwsgi_python3 --ini fuss.wsgi.ini
[uwsgi]
-plugins = python3,logfile
+plugins = python36,logfile
bgstack15