Skip to content

Commit

Permalink
rpms.sh: now creates packages without dependency for python version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Jansky committed Feb 16, 2016
1 parent 306a583 commit d0f765b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ export chuser
)
(
cd python
su $chuser -p -c "python setup.py bdist_rpm"
su $chuser -p -c "python setup.py bdist_rpm --no-autoreq"
$pkginst install -y -q $(find \( -name '*noarch.rpm' -o -name '*64.rpm' \))
)
(
cd pycommon
su $chuser -p -c "python setup.py bdist_rpm"
su $chuser -p -c "python setup.py bdist_rpm --no-autoreq"
$pkginst install -y -q $(find \( -name '*noarch.rpm' -o -name '*64.rpm' \))
)
)
Expand Down

0 comments on commit d0f765b

Please sign in to comment.