Skip to content

Commit

Permalink
Fix macro syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jmontleon authored and fabianvf committed Jan 17, 2019
1 parent 7990161 commit 1672216
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python-openshift.spec
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ sed -i -e "s/extract_requirements('requirements.txt')/REQUIRES/g" setup.py
%endif

%build
%if 0%?{with_python2}
%if 0%{?with_python2}
%py2_build
%endif
%if 0%{?with_python3}
Expand All @@ -111,7 +111,7 @@ sphinx-build doc/source/ html
%endif

%install
%if 0%?{with_python2}
%if 0%{?with_python2}
%py2_install
%endif
%if 0%{?with_python3}
Expand All @@ -121,7 +121,7 @@ sphinx-build doc/source/ html
%check
#test dependencies are unpackaged

%if 0%?{with_python2}
%if 0%{?with_python2}
%files -n python2-%{library}
%license LICENSE
%{python2_sitelib}/%{library}/*
Expand Down

0 comments on commit 1672216

Please sign in to comment.