diff options
| author | Jagger De Leo <jcdl@fastmail.com> | 2020-07-05 23:46:38 -0400 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2020-07-06 09:16:07 +0200 |
| commit | 7fbf49b216895d6870f46f54ab8e1289f541a723 (patch) | |
| tree | 1551bd684e7a0961a6b22d8b901540916c77a57d | |
| parent | 95afe80c3b8a26c6eeba0e494851d9f46f69bb4a (diff) | |
| download | kristall-7fbf49b216895d6870f46f54ab8e1289f541a723.tar.gz | |
Fix dangling semi-colon
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ QMAKE_COMMAND := qmake UNAME := $(shell uname) # Homebrew on macOS does not link Qt5 into the system path. ifeq ($(UNAME),Darwin) - HOMEBREW_PATH=export PATH="$(PATH):/usr/local/opt/qt/bin" + HOMEBREW_PATH=export PATH="$(PATH):/usr/local/opt/qt/bin"; endif kristall: build/kristall @@ -29,7 +29,7 @@ kristall: build/kristall build/kristall: src/* mkdir -p build - cd build; $(HOMEBREW_PATH); $(QMAKE_COMMAND) ../src/kristall.pro && $(MAKE) $(MAKEFLAGS) + cd build; $(HOMEBREW_PATH) $(QMAKE_COMMAND) ../src/kristall.pro && $(MAKE) $(MAKEFLAGS) install: kristall # Install icons |
