Skip to content
Snippets Groups Projects
Commit dd2d748b authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

rel_env/recompress_all: unxz before recompressing

Previously we would rather compress the xz *again*, before in addition
compressing it with the desired scheme.

Fixes #24545.
parent 1dfe12db
No related branches found
No related tags found
No related merge requests found
......@@ -9,15 +9,15 @@ usage :
%.gz : %.xz
echo "[xz->gz] $< to $@..."
xz -c $< | gzip -c > $@
xz -cd $< | gzip -c > $@
%.bz2 : %.xz
echo "[xz->bz2] $< to $@..."
xz -c $< | bzip2 -c > $@
xz -cd $< | bzip2 -c > $@
%.lz : %.xz
echo "[xz->lz] $< to $@..."
xz -c $< | lzip -c > $@
xz -cd $< | lzip -c > $@
%.zip : %.tar.xz
echo "[tarxz->zip] $< to $@..."
......
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