From eef31a8cb99cc8763e47468b7610ff6b2914c05c Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Mon, 27 Jan 2020 20:16:05 -0500 Subject: [PATCH] Rearranged DESTDIR so that it's recognized as a directory --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4adc707..759c48d 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,6 @@ src/shell.o: src/shell.hpp src/shell.cpp src/string.o: src/string.h src/string.c $(GPP) -c src/string.c -o src/string.o install: - install sloth $(DESTDIR)/bin + install -t $(DESTDIR)/bin/ sloth clean: rm src/parser/lex.yy.c src/parser/parser.tab.c src/parser/parser.tab.h src/parser/lex.yy.o src/parser/parser.tab.o src/variables/environment.o src/variables/variable.o src/variables/value.o src/operations/node.o src/operations/operators.o src/string.o src/shell.o sloth