mirror of https://github.com/aristocratos/bashtop
Create DOCDIR
The makefile attempts to copy the README.md file to a directory that doesn't exist when I build this in my build environment. This patch ensure that the directory exists first.pull/89/head
parent
8543c54f60
commit
2a7ec8df61
1
Makefile
1
Makefile
|
@ -7,6 +7,7 @@ all:
|
||||||
install:
|
install:
|
||||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
@cp -p bashtop $(DESTDIR)$(PREFIX)/bin/bashtop
|
@cp -p bashtop $(DESTDIR)$(PREFIX)/bin/bashtop
|
||||||
|
@mkdir -p $(DESTDIR)$(DOCDIR)
|
||||||
@cp -p README.md $(DESTDIR)$(DOCDIR)
|
@cp -p README.md $(DESTDIR)$(DOCDIR)
|
||||||
@chmod 755 $(DESTDIR)$(PREFIX)/bin/bashtop
|
@chmod 755 $(DESTDIR)$(PREFIX)/bin/bashtop
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue