aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Tandy <ryan@nardis.ca>2013-12-28 13:44:51 -0800
committerRyan Tandy <ryan@nardis.ca>2013-12-28 13:44:51 -0800
commiteab913a16cf085849e362a5050de52245d51fd0d (patch)
treeda23aa08864e8b2aa044a4c79adf5914fdd9a535 /Makefile
parent79bb6f0c99ceeeff529f07101edd47747d7b8e45 (diff)
downloadmirror-meh-eab913a16cf085849e362a5050de52245d51fd0d.tar.gz
mirror-meh-eab913a16cf085849e362a5050de52245d51fd0d.tar.bz2
mirror-meh-eab913a16cf085849e362a5050de52245d51fd0d.zip
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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: