mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
Fix to make Makefile copy sample prompts
This commit is contained in:
parent
3589554028
commit
593ab75a76
1 changed files with 5 additions and 0 deletions
|
@ -589,6 +589,7 @@ install-force: all install-translations
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/man/man1
|
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/man/man1
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools
|
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools/web_config
|
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools/web_config
|
||||||
|
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools/web_config/sample_prompts
|
||||||
$(INSTALL) -m 644 etc/config.fish $(DESTDIR)$(sysconfdir)/fish/
|
$(INSTALL) -m 644 etc/config.fish $(DESTDIR)$(sysconfdir)/fish/
|
||||||
$(INSTALL) -m 644 share/config.fish $(DESTDIR)$(datadir)/fish/
|
$(INSTALL) -m 644 share/config.fish $(DESTDIR)$(datadir)/fish/
|
||||||
for i in $(COMPLETIONS_DIR_FILES); do \
|
for i in $(COMPLETIONS_DIR_FILES); do \
|
||||||
|
@ -611,6 +612,10 @@ install-force: all install-translations
|
||||||
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/tools/web_config/; \
|
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/tools/web_config/; \
|
||||||
true; \
|
true; \
|
||||||
done;
|
done;
|
||||||
|
for i in share/tools/web_config/sample_prompts/*.fish; do\
|
||||||
|
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/tools/web_config/sample_prompts/; \
|
||||||
|
true; \
|
||||||
|
done;
|
||||||
for i in share/tools/web_config/*.py; do\
|
for i in share/tools/web_config/*.py; do\
|
||||||
$(INSTALL) -m 755 $$i $(DESTDIR)$(datadir)/fish/tools/web_config/; \
|
$(INSTALL) -m 755 $$i $(DESTDIR)$(datadir)/fish/tools/web_config/; \
|
||||||
true; \
|
true; \
|
||||||
|
|
Loading…
Reference in a new issue