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:
parent
178fa534ea
commit
feb07cf610
|
@ -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 - | \
|
||||
|
|
Loading…
Reference in New Issue