From 0a76491a9b519fd7a13d91207fb8071b9d18f6bf Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 22 Nov 2016 12:04:02 +0100 Subject: [PATCH] pyqt: Added the more verbose start_cmd --- PyQt.be0 | 6 +++--- PyQt5.be0 | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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}" }