From 7d513f07edcaccd314eea88e6509fc9cd594c34e Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Wed, 8 Oct 2008 14:06:23 -1000 Subject: [PATCH] This isn't shell. --- src/pylorax/instroot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/instroot.py b/src/pylorax/instroot.py index eea7b085..331fb848 100644 --- a/src/pylorax/instroot.py +++ b/src/pylorax/instroot.py @@ -308,7 +308,7 @@ def scrubInstRoot(destdir=None, libdir='lib', arch=None): shutil.rmtree(rmpath, ignore_errors=True) # fix up some links for man page related stuff - for file in nroff groff iconv geqn gtbl gpic grefer ; do + for file in ['nroff', 'groff', 'iconv', 'geqn', 'gtbl', 'gpic', 'grefer']: src = os.path.join('mnt', 'sysimage', 'usr', 'bin', file) dest = os.path.join(destdir, 'usr', 'bin', file) os.symlink(src, dest)