aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2016-02-21 17:15:29 -0500
committerAnthony G. Basile <blueness@gentoo.org>2016-02-21 17:15:29 -0500
commit2024ac84f3201615ffdf3f49e07454e480f0657b (patch)
tree324598aac282c03cdfb8db6f3eb77a3251b90424
parentgrs/WorldConf.py: guard against <cat>/<pkg> with no ebuilds. (diff)
downloadgrss-2024ac84f3201615ffdf3f49e07454e480f0657b.tar.gz
grss-2024ac84f3201615ffdf3f49e07454e480f0657b.tar.bz2
grss-2024ac84f3201615ffdf3f49e07454e480f0657b.zip
bin/grsup: dereference sym links so you don't clobber /lib -> /lib64v0.5
-rwxr-xr-xbin/grsup2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/grsup b/bin/grsup
index 74670cd..319236f 100755
--- a/bin/grsup
+++ b/bin/grsup
@@ -106,7 +106,7 @@ def install_kernel(version = 'latest', logfile = CONST.LOGFILE):
# Untar it at '/'. tar will not clobber files.
cwd = os.getcwd()
os.chdir('/')
- cmd = 'tar --overwrite -Jxf %s' % kpath
+ cmd = 'tar --overwrite -hJxf %s' % kpath
Execute(cmd, timeout=600, logfile=logfile)
os.chdir(cwd)