Skip to content

Commit

Permalink
pyqt: Added the more verbose start_cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas committed Nov 22, 2016
1 parent e10493f commit 0a76491
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions PyQt.be0
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}
6 changes: 3 additions & 3 deletions PyQt5.be0
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}

0 comments on commit 0a76491

Please sign in to comment.