diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-18 04:06:57 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-18 04:06:57 +0000 |
commit | 79200f7bfff9d838991b4a124089ace126b47678 (patch) | |
tree | d08854d0840fa4fd2815a256d9129329fab37ac5 /scripts | |
parent | ace50d8f029e181c3d1ac6158ecd57e7e3e1a69c (diff) | |
download | anaconda-79200f7bfff9d838991b4a124089ace126b47678.tar.gz anaconda-79200f7bfff9d838991b4a124089ace126b47678.tar.xz anaconda-79200f7bfff9d838991b4a124089ace126b47678.zip |
we only want the libunicode for ftp/http/hd
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/upd-instroot | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 301f6eb07..018b87fe2 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -815,6 +815,11 @@ for p in $DEST $DESTGR; do mv $p/usr/sbin/anaconda $p/usr/bin/anaconda mv $p/usr/lib/anaconda-runtime/lib* $p/usr/$LIBDIR + # we only want the libunicode-lite stuff on the minimal image + if [ $p = $DESTGR ]; then + rm -f $p/usr/$LIBDIR/libunicode-lite* + fi + find $p -type d | xargs chmod 755 if [ -f $p/bin/bash ]; then |