Skip to content

Commit 7623326

Browse files
committed
Makefile had a type too...
1 parent b96cf86 commit 7623326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PREFIX ?= /usr/local
22
BASH_COMPLETION_DIR := $(shell pkg-config --variable=completionsdir bash-completion)
33
# pkg-config adds a space for some reason, we have to strip it off.
4-
BASH_COMPLETION_DIR := $(strip BASH_COMPLETION_DIR)
4+
BASH_COMPLETION_DIR := $(strip $(BASH_COMPLETION_DIR))
55
USERDIR ?= $(HOME)
66

77
install:
@@ -13,7 +13,7 @@ install:
1313
install -m777 -D config.example $(USERDIR)/.config/notes/config.example
1414
install -D notes.1 $(PREFIX)/share/man/man1/notes.1
1515
mandb 1>/dev/null
16-
unintstall:
16+
uninstall:
1717
rm -f $(PREFIX)/bin/notes
1818
rm -f $(PREFIX)/share/man/man1/notes.1
1919
rm -f $(BASH_COMPLETION_DIR)/notes

0 commit comments

Comments
 (0)