Skip to content

Commit e73be48

Browse files
Escape arguments to certain shell invocations in Makefile
fish-shell#387
1 parent 04b1b83 commit e73be48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -592,11 +592,11 @@ install-force: all install-translations
592592
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools/web_config/sample_prompts
593593
$(INSTALL) -m 644 etc/config.fish $(DESTDIR)$(sysconfdir)/fish/
594594
$(INSTALL) -m 644 share/config.fish $(DESTDIR)$(datadir)/fish/
595-
for i in $(COMPLETIONS_DIR_FILES); do \
595+
for i in $(COMPLETIONS_DIR_FILES:%='%'); do \
596596
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/completions/; \
597597
true; \
598598
done;
599-
for i in $(FUNCTIONS_DIR_FILES); do \
599+
for i in $(FUNCTIONS_DIR_FILES:%='%'); do \
600600
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/functions/; \
601601
true; \
602602
done;

0 commit comments

Comments
 (0)