diff options
author | Chris Lumens <clumens@redhat.com> | 2005-03-23 16:10:55 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-03-23 16:10:55 +0000 |
commit | 7b3ae991e585385d18a95ce795775337de6c8ccd (patch) | |
tree | 22f4793bf69c1cb49cf1b166000587b5febefc96 /scripts | |
parent | 121340f6dc0434fef7087777d7ac8b660a86e70e (diff) | |
download | anaconda-7b3ae991e585385d18a95ce795775337de6c8ccd.tar.gz anaconda-7b3ae991e585385d18a95ce795775337de6c8ccd.tar.xz anaconda-7b3ae991e585385d18a95ce795775337de6c8ccd.zip |
rpm also needs libgcc. While I'm at it, moved libexpat into the base
KEEPFILE list since ldd tells me rpm will need that as well. Hopefully
this is the last one.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/upd-instroot | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index acb00e199..7b82dfc31 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -120,7 +120,7 @@ PACKAGES="glibc glibc-common setup openssl python newt slang libselinux elfutils-libelf bogl-bterm bogl krb5-libs convertdb1 jfsutils xfsprogs xfsdump dmapi libacl libattr attr acl python-urlgrabber policy policycoreutils pyparted xorg-x11 selinux-policy-targeted - libstdc++" + libstdc++ expat libgcc" if [ $ARCH = i386 -o $ARCH = x86_64 ]; then PACKAGES="$PACKAGES kernel-pcmcia-cs kernel-utils" @@ -259,6 +259,7 @@ $LIBDIR/libdl* $LIBDIR/libe2p* $LIBDIR/libext2fs* $LIBDIR/liblvm-10.so* +$LIBDIR/libgcc_s* $LIBDIR/libm[-.]* $LIBDIR/libnsl* $LIBDIR/libnss_dns* @@ -343,6 +344,7 @@ usr/$LIBDIR/libgssapi_krb5.so* usr/$LIBDIR/gconv/ISO8859-1.so usr/$LIBDIR/gconv/gconv-modules usr/$LIBDIR/libbeecrypt* +usr/$LIBDIR/libexpat* usr/$LIBDIR/libglib* usr/$LIBDIR/libgmodule* usr/$LIBDIR/libgobject* @@ -610,7 +612,6 @@ usr/$LIBDIR/libart* usr/$LIBDIR/libatk* usr/$LIBDIR/libaudio* usr/$LIBDIR/libesd* -usr/$LIBDIR/libexpat* usr/$LIBDIR/libfontconfig* usr/$LIBDIR/libfreetype* usr/$LIBDIR/libgdk* |