Skip to content

Commit

Permalink
Fix dangling semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
danielledeleo authored and ikskuh committed Jul 6, 2020
1 parent 95afe80 commit 7fbf49b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ 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
cp 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
Expand Down

0 comments on commit 7fbf49b

Please sign in to comment.