Fix install when the destination does not exist.

This commit is contained in:
Karl Linden 2017-11-26 18:46:13 +01:00
parent b35fb960a8
commit ac6877fef5
No known key found for this signature in database
GPG Key ID: C0F669D8CE2576AB
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ clean:
rm -f $(program) $(objects) rm -f $(program) $(objects)
install: $(program) install: $(program)
install $(program) $(DESTDIR)$(PREFIX)/bin install -D -t $(DESTDIR)$(PREFIX)/bin $(program)
dist: dist:
tar cfa $(program)-v1b.tar.gz Makefile README.md $(headers) $(sources) tar cfa $(program)-v1b.tar.gz Makefile README.md $(headers) $(sources)