]> git.saurik.com Git - wxWidgets.git/commitdiff
rpmbuild may not exist
authorRobin Dunn <robin@alldunn.com>
Thu, 4 Nov 2004 21:56:10 +0000 (21:56 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 4 Nov 2004 21:56:10 +0000 (21:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30277 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/all/build-linux

index f0660d8626d1ebd334a25d821bf8d0231fab8719..0a2e6b882ec27ef8cb9db70b944173133fd262dd 100755 (executable)
@@ -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" \