Mercurial > packages > rhel6 > uwsgi
comparison uwsgi-do-not-install-plugins-into-plugin_dir.patch @ 0:9668c317e887
Initial revision
author | Guido Berhoerster <guido+packaging@berhoerster.name> |
---|---|
date | Wed, 10 Jul 2013 19:23:16 +0200 |
parents | |
children | 6f2f488ec30d |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9668c317e887 |
---|---|
1 Index: uwsgi-1.9.13/uwsgiconfig.py | |
2 =================================================================== | |
3 --- uwsgi-1.9.13.orig/uwsgiconfig.py | |
4 +++ uwsgi-1.9.13/uwsgiconfig.py | |
5 @@ -1170,10 +1170,7 @@ def build_plugin(path, uc, cflags, ldfla | |
6 except: | |
7 pass | |
8 | |
9 - if uc: | |
10 - plugin_dest = uc.get('plugin_dir') + '/' + name + '_plugin' | |
11 - else: | |
12 - plugin_dest = name + '_plugin' | |
13 + plugin_dest = name + '_plugin' | |
14 | |
15 shared_flag = '-shared' | |
16 |