From: Robin Dunn Date: Thu, 4 Nov 2004 21:56:10 +0000 (+0000) Subject: rpmbuild may not exist X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b8419d9a8b6a93d5aad8216c1bd7ebae8c68b606 rpmbuild may not exist git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30277 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/distrib/all/build-linux b/wxPython/distrib/all/build-linux index f0660d8626..0a2e6b882e 100755 --- a/wxPython/distrib/all/build-linux +++ b/wxPython/distrib/all/build-linux @@ -31,12 +31,19 @@ PYVER=$@ rpmtop=_rpm_top +if which rpmbuild > /dev/null 2>&1; then + RPMBUILD=rpmbuild +else + RPMBUILD=rpm +fi + + function DoRPMBuild { # $1 : python version # $2 : port # $3 : unicode - rpmbuild --define "_topdir $PWD/$rpmtop" \ + $RPMBUILD --define "_topdir $PWD/$rpmtop" \ --define "_tmppath $PWD/$rpmtop/tmp" \ --define "release ${RELEASE}_py$1" \ --define "pyver $1" \