mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Always create the directory path before installing (using mkinstalldirs)
This commit is contained in:
parent
ed2dc18408
commit
14f6c0ebf5
@ -2,6 +2,7 @@ path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
install-local:
|
||||
$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
|
||||
$(INSTALL_DATA) elinks.1 $(DESTDIR)$(mandir)/man1
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
||||
|
@ -2,6 +2,7 @@ path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
install-local:
|
||||
$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man5
|
||||
$(INSTALL_DATA) elinks.conf.5 $(DESTDIR)$(mandir)/man5
|
||||
$(INSTALL_DATA) elinkskeys.5 $(DESTDIR)$(mandir)/man5
|
||||
|
||||
|
@ -41,6 +41,7 @@ elinks: lib.o
|
||||
$(call cmd,link)
|
||||
|
||||
install-local:
|
||||
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
||||
$(INSTALL_PROGRAM) elinks $(DESTDIR)$(bindir)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
||||
|
Loading…
Reference in New Issue
Block a user