From 65cc8bfabccc64e99f7818e7be73fa25085c7c99 Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 20 Oct 2020 05:26:13 +0300 Subject: [PATCH] Makefile: fix a bug --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a982c0d..3c47caa 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ $(TARGET): $(SOURCE) nimble uninstall -y argparse install: $(TARGET) - install -d $(DESTDIR)$(BINDIR) - install -m 755 $< $(DESTDIR)$(BINDIR) + install -d $(BINDIR) + install -m 755 $< $(BINDIR) uninstall: rm $(BINDIR)/$(TARGET)