diff --git a/PyQt.be0 b/PyQt.be0 index e3855624b..a37089106 100755 --- a/PyQt.be0 +++ b/PyQt.be0 @@ -31,19 +31,19 @@ build_in_sourcedir #} mee_configure() { - python configure.py \ + start_cmd python configure.py \ --confirm-license \ --verbose \ -q /usr/local/qt4/bin/qmake } mee_build() { - make ${BEE_MAKEFLAGS} + start_cmd make ${BEE_MAKEFLAGS} } ## mee_install() should install into "${D}" ## default: 'make install DESTDIR="${D}"' mee_install() { - make install DESTDIR="${D}" INSTALL_ROOT="${D}" + start_cmd make install DESTDIR="${D}" INSTALL_ROOT="${D}" } diff --git a/PyQt5.be0 b/PyQt5.be0 index a5204f034..4471cbb4b 100755 --- a/PyQt5.be0 +++ b/PyQt5.be0 @@ -30,19 +30,19 @@ build_in_sourcedir #} mee_configure() { - python configure.py \ + start_cmd python configure.py \ --confirm-license \ --verbose \ -q /usr/local/qt5/bin/qmake } mee_build() { - make ${BEE_MAKEFLAGS} + start_cmd make ${BEE_MAKEFLAGS} } ## mee_install() should install into "${D}" ## default: 'make install DESTDIR="${D}"' mee_install() { - make install DESTDIR="${D}" INSTALL_ROOT="${D}" + start_cmd make install DESTDIR="${D}" INSTALL_ROOT="${D}" }