diff options
author | Matt Wilson <msw@redhat.com> | 2000-01-04 21:31:06 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-01-04 21:31:06 +0000 |
commit | 28aaef570a00c6890244e7017e31df790498e0bf (patch) | |
tree | c9f67eff267d1fbbb2aac1a9132b6aa68184d4cc /upd-instroot | |
parent | 094ff4ce307744a9e70f4e5ea09f80a536144978 (diff) | |
download | anaconda-28aaef570a00c6890244e7017e31df790498e0bf.tar.gz anaconda-28aaef570a00c6890244e7017e31df790498e0bf.tar.xz anaconda-28aaef570a00c6890244e7017e31df790498e0bf.zip |
remove extra /
Diffstat (limited to 'upd-instroot')
-rwxr-xr-x | upd-instroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd-instroot b/upd-instroot index 8e95d7dec..6b3578ff4 100755 --- a/upd-instroot +++ b/upd-instroot @@ -26,7 +26,7 @@ pythondeps() { mknod $DIR/dev/openprom c 10 139 fi (chroot $DIR /usr/bin/anaconda -m dir://mnt/source --test --text --traceonly; \ - cd $DIR; find usr/lib/python* /usr/lib/anaconda -type f | sed 's,^,/,' ) | \ + cd $DIR; find usr/lib/python* usr/lib/anaconda -type f | sed 's,^,/,' ) | \ sort | uniq -u | sed s,^,./, | while read fn; do [ ! -d $DIR/$fn ] && rm $DIR/$fn done |