Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: bin/
Date: Sun, 21 Feb 2016 22:06:04
Message-Id: 1456092929.2024ac84f3201615ffdf3f49e07454e480f0657b.blueness@gentoo
1 commit: 2024ac84f3201615ffdf3f49e07454e480f0657b
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 21 22:15:29 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 21 22:15:29 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=2024ac84
7
8 bin/grsup: dereference sym links so you don't clobber /lib -> /lib64
9
10 bin/grsup | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/bin/grsup b/bin/grsup
14 index 74670cd..319236f 100755
15 --- a/bin/grsup
16 +++ b/bin/grsup
17 @@ -106,7 +106,7 @@ def install_kernel(version = 'latest', logfile = CONST.LOGFILE):
18 # Untar it at '/'. tar will not clobber files.
19 cwd = os.getcwd()
20 os.chdir('/')
21 - cmd = 'tar --overwrite -Jxf %s' % kpath
22 + cmd = 'tar --overwrite -hJxf %s' % kpath
23 Execute(cmd, timeout=600, logfile=logfile)
24 os.chdir(cwd)