9e8572ff83
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/qt5#89f9ce4200e65c8e1b8a2e3551dd2c93304e4c8c
11 lines
292 B
Bash
Executable File
11 lines
292 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# An attempt at providing a qmake wrapper for projects that
|
|
# lack native qmake support (ie, qmake is run by buildsystem
|
|
# instead of developer or fedora packager).
|
|
|
|
QMAKE="$(rpm --eval %{_qt5_qmake})"
|
|
QMAKE_FLAGS="$(rpm --eval %{?_qt5_qmake_flags})"
|
|
|
|
eval $QMAKE $QMAKE_FLAGS $@
|