packaging/standalone: Do not use NUL-separated filenames in manifest

tar(1) expects one file per line which is fine in our case.

[#141674113]
This commit is contained in:
Jean-Sébastien Pédron 2017-03-14 11:46:01 +01:00
parent 178fa534ea
commit feb07cf610
No known key found for this signature in database
GPG Key ID: 39E99761A5FD94CC
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ dist:
rm -f $(RLS_DIR)/erts-$(ERTS_VSN)/bin/erl.orig
cd $(TARGET_DIR)/release && \
find $(TARGET_DIR) -print0 | \
LC_COLLATE=C sort -z > $(CURDIR)/manifest
find $(TARGET_DIR) | \
LC_COLLATE=C sort > $(CURDIR)/manifest
cd $(TARGET_DIR)/release && \
tar -T $(CURDIR)/manifest --no-recursion -cf - | \