Skip to content
Snippets Groups Projects
Commit 3eaaa3d6 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[Makefile] properly quote input.

parent c8a48e9c
No related branches found
No related tags found
No related merge requests found
......@@ -2531,7 +2531,7 @@ endif
@#although it seems to segfault in 4.0 (but not in 4.1)
$(RM) file_list_to_archive.tmp
@$(foreach file,$(DISTRIB_FILES) $(DISTRIB_TESTS),\
echo $(file) | $(SED) 's/@/ /g' >> file_list_to_archive.tmp$(NEWLINE))
echo '$(file)' | $(SED) 's/@/ /g' >> file_list_to_archive.tmp$(NEWLINE))
$(TAR) -cf - --files-from file_list_to_archive.tmp | $(TAR) -C $(CLIENT_DIR) -xf -
$(RM) file_list_to_archive.tmp
$(PRINT_MAKING) files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment