1
0
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:
Jonas Fonseca 2005-09-28 21:43:09 +02:00 committed by Jonas Fonseca
parent ed2dc18408
commit 14f6c0ebf5
3 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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