aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Wasiak <tjwasiak@poczta.onet.pl>2013-12-30 17:17:28 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2017-01-07 17:50:39 -0800
commit054c583f4911bb014c4c0fefb4a5ae4b1be9e617 (patch)
tree9bbee3e8d5321ed8fc124611ab827c77992691ae /gen_determineargs.sh
parentMinor fixes and enhmacements in splash support (diff)
downloadgenkernel-054c583f4911bb014c4c0fefb4a5ae4b1be9e617.tar.gz
genkernel-054c583f4911bb014c4c0fefb4a5ae4b1be9e617.tar.bz2
genkernel-054c583f4911bb014c4c0fefb4a5ae4b1be9e617.zip
Additional source file archive formats support
This patch mainly replaces tar xjf with tar xf as modern tar supports not only bzip2... (minor tweaks to apply) Fixes: https://bugs.gentoo.org/show_bug.cgi?id=496512#c8 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'gen_determineargs.sh')
-rwxr-xr-xgen_determineargs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index cae8c66..23084a1 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -4,7 +4,7 @@
get_KV() {
if [ "${KERNEL_SOURCES}" = '0' -a -e "${KERNCACHE}" ]
then
- /bin/tar -xj -C ${TEMP} -f ${KERNCACHE} kerncache.config
+ /bin/tar -x -C ${TEMP} -f ${KERNCACHE} kerncache.config
if [ -e ${TEMP}/kerncache.config ]
then
VER=`grep ^VERSION\ \= ${TEMP}/kerncache.config | awk '{ print $3 };'`