Commit c24abe94a2b3e9ccd7e98e97bc21da9853feea03
1 parent
96ddf953
Exists in
master
and in
79 other branches
bottle: workaround wrong path to python
See https://bugzilla.redhat.com/show_bug.cgi?id=1117878
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
bottle/bottle.spec
| ... | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | %define version 0.13_dev |
| 3 | 3 | %define unmangled_version 0.13-dev |
| 4 | 4 | %define unmangled_version 0.13-dev |
| 5 | -%define release 4 | |
| 5 | +%define release 5 | |
| 6 | 6 | |
| 7 | 7 | Summary: Fast and simple WSGI-framework for small web-applications. |
| 8 | 8 | Name: %{name} |
| ... | ... | @@ -39,7 +39,7 @@ License: MIT (see LICENSE for details) |
| 39 | 39 | %setup -n %{name}-%{unmangled_version} -n %{name}-%{unmangled_version} |
| 40 | 40 | |
| 41 | 41 | %build |
| 42 | -python setup.py build | |
| 42 | +PATH="/usr/bin:$PATH" python setup.py build | |
| 43 | 43 | |
| 44 | 44 | %install |
| 45 | 45 | python setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES | ... | ... |