From 298d39ea718d155c4f022d271002721141ea55db Mon Sep 17 00:00:00 2001 From: Johannes Bensmann Date: Mon, 10 Jun 2019 11:45:59 +0200 Subject: fixed bracket inconsistency --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c773fed..2ea9eb5 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,8 @@ clean: install: all mkdir -p $(PREFIX)/bin - cp -f $(BIN) ${PREFIX}/bin - chmod 755 ${PREFIX}/bin/$(BIN) + cp -f $(BIN) $(PREFIX)/bin + chmod 755 $(PREFIX)/bin/$(BIN) uninstall: - rm -f ${PREFIX}/bin/$(BIN) + rm -f $(PREFIX)/bin/$(BIN) -- cgit v1.2.3