From eab913a16cf085849e362a5050de52245d51fd0d Mon Sep 17 00:00:00 2001 From: Ryan Tandy Date: Sat, 28 Dec 2013 13:44:51 -0800 Subject: fix install(1) invocation install -D has to be passed the full destination path, including the filename. Previously it was installing a binary called 'bin' into /usr/local. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0e3a5dd..d39012e 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ test/test: test/test.o $(filter-out src/main.o src/xlib.o, $(OBJFILES)) $(CC) $(CFLAGS) -MMD -MP -MT "$*.d" -c -o $@ $< install: - install -Dm 755 meh $(BINDIR) + install -Dm 755 meh $(BINDIR)/meh # Clean clean: -- cgit v1.2.3