Closed chniko closed 9 years ago
The extract command for a .txz file is tar -xpf
:
EXTRACT_CMD.txz = tar -xpf $(DIST_FILE) -C $(EXTRACT_PATH)
Some/Older tar versions might not correctly detect the format. Those may use -Jxpf
, but proper up-to-date versions should not need it.
Ok, I will update the tar of my VM. Thanks!
Hi, I'm trying (was trying because @Dr-Bean just uploaded it!!) a spk for my Syno DS215+. I found out that the toolchains provided by Synology was a
txv
archive. So within the filespksrc.extract.mk
I've tried the following:but it was not taken into account, so I had to trick it like that EXTRACT_CMD.tgz = tar -Jxvf $(DIST_FILE) -C $(EXTRACT_PATH) but it's not proper... How should I do that ?