diff options
| author | Erik Beck <traderbeckola@tahoma.com> | 2020-06-30 08:07:57 -0400 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2020-07-01 23:24:04 +0200 |
| commit | be73532265c70f0c291d8d2d6e2f8236cb509430 (patch) | |
| tree | 79d84d068b32c114a5a89657410a56216c231cf6 | |
| parent | 5d409b0db911ec839d3c9b71b08a3269d20cb6bf (diff) | |
| download | kristall-be73532265c70f0c291d8d2d6e2f8236cb509430.tar.gz | |
Set a Variable QMAKE in the makefile to direct build on Fedora 32, where 'qmake' doesn't exist, but qmake-qt5 (and qmake-qt4) does.
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,13 +11,14 @@ INSTALL_DATA=$(INSTALL) -Dm 644 # Directories into which to install the various files bindir=$(DESTDIR)$(PREFIX)/bin sharedir=$(DESTDIR)$(PREFIX)/share +QMAKE := /usr/bin/qmake-qt5 kristall: build/kristall cp build/kristall $@ build/kristall: src/* mkdir -p build - cd build && qmake ../src/kristall.pro && $(MAKE) $(MAKEFLAGS) + cd build && $(QMAKE) ../src/kristall.pro && $(MAKE) $(MAKEFLAGS) install: kristall # Install icons |
