mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
Fix compilation on Fedora: qmake is qmake-qt5
This commit is contained in:
parent
a9d1016a52
commit
26a2f46197
14
unixbuild.sh
14
unixbuild.sh
@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
UTARGET=$(uname)
|
UTARGET=$(uname)
|
||||||
BINSUFFIX=""
|
BINSUFFIX=""
|
||||||
|
QMAKE="qmake"
|
||||||
|
|
||||||
|
# Fedora does not have qmake, only qmake-qt5
|
||||||
|
if ! command -v qmake > /dev/null; then
|
||||||
|
if command -v qmake-qt5 > /dev/null; then
|
||||||
|
QMAKE="qmake-qt5"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$1" = "--configure" ]; then
|
if [ "$1" = "--configure" ]; then
|
||||||
export NOBUILD=1
|
export NOBUILD=1
|
||||||
@ -86,11 +94,11 @@ build_tool() {
|
|||||||
if [ "$PRECONFIGURED" != "1" ]; then
|
if [ "$PRECONFIGURED" != "1" ]; then
|
||||||
if [ "$3" != "" ]; then
|
if [ "$3" != "" ]; then
|
||||||
if [ "$UPLATFORM" = "mac" ]; then
|
if [ "$UPLATFORM" = "mac" ]; then
|
||||||
qmake "../../$1/$3" QMAKE_CXXFLAGS+=-flto QMAKE_LFLAGS+=-flto CONFIG+=optimize_size || exit 1
|
$QMAKE "../../$1/$3" QMAKE_CXXFLAGS+=-flto QMAKE_LFLAGS+=-flto CONFIG+=optimize_size || exit 1
|
||||||
elif [ "$UPLATFORM" = "win32" ]; then
|
elif [ "$UPLATFORM" = "win32" ]; then
|
||||||
qmake "../../$1/$3" QMAKE_CXXFLAGS="-static -flto -Os -std=c++11" QMAKE_LFLAGS="-static -flto -Os -std=c++11" CONFIG+=optimize_size CONFIG+=staticlib CONFIG+=static || exit 1
|
$QMAKE "../../$1/$3" QMAKE_CXXFLAGS="-static -flto -Os -std=c++11" QMAKE_LFLAGS="-static -flto -Os -std=c++11" CONFIG+=optimize_size CONFIG+=staticlib CONFIG+=static || exit 1
|
||||||
else
|
else
|
||||||
qmake "../../$1/$3" CONFIG+=optimize_size || exit 1
|
$QMAKE "../../$1/$3" CONFIG+=optimize_size || exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ "$UPLATFORM" = "mac" ]; then
|
if [ "$UPLATFORM" = "mac" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user