diff options
author | Ryan Tandy <ryan@nardis.ca> | 2013-12-28 13:44:51 -0800 |
---|---|---|
committer | Ryan Tandy <ryan@nardis.ca> | 2013-12-28 13:44:51 -0800 |
commit | eab913a16cf085849e362a5050de52245d51fd0d (patch) | |
tree | da23aa08864e8b2aa044a4c79adf5914fdd9a535 | |
parent | 79bb6f0c99ceeeff529f07101edd47747d7b8e45 (diff) | |
download | mirror-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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |