diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2015-11-11 20:57:08 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2015-11-11 21:07:29 +0000 |
commit | a225d4561435c6f1ec1d221d4bd403426e8432f0 (patch) | |
tree | b4608e3155917424a47e21042b09359cf043f801 /Makefile | |
parent | 04cc0097f9a65615c8744421dbc299a8d32728e2 (diff) | |
download | imv-a225d4561435c6f1ec1d221d4bd403426e8432f0.tar.gz |
Fix makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,5 +31,5 @@ clean: @$(RM) $(TARGET) $(OBJECTS) install: $(TARGET) - install -m 0755 $(TARGET) $(prefix)/bin - install -m 0644 doc/imv.1 $(prefix)/share/man/man1 + install -D -m 0755 $(TARGET) $(DESTDIR)$(prefix)/bin/$(TARGET) + install -D -m 0644 doc/imv.1 $(DESTDIR)$(prefix)/share/man/man1/imv.1 |