diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-11-19 21:03:31 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-11-19 21:03:31 +0000 |
commit | 7ce631b1bfb27c6efb6f1eceb5660382ab29f042 (patch) | |
tree | d2fcfce7f443bbd61200963fe28c6088a28c521f | |
parent | f9396d8e53956d893f34116e8a37ae7c9ca49ae5 (diff) | |
download | anaconda-7ce631b1bfb27c6efb6f1eceb5660382ab29f042.tar.gz anaconda-7ce631b1bfb27c6efb6f1eceb5660382ab29f042.tar.xz anaconda-7ce631b1bfb27c6efb6f1eceb5660382ab29f042.zip |
we seem to always need libstdc++ now. oh joy.
-rwxr-xr-x | scripts/upd-instroot | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 8b1b20671..8e8e6614b 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -102,10 +102,11 @@ PACKAGES="glibc glibc-common setup openssl python python2 newt libtermcap zlib XFree86 Xconfigurator anaconda anaconda-runtime kudzu-devel kudzu hwdata db3 bzip2 bzip2-libs dosfstools pciutils reiserfs-utils parted busybox-anaconda rpm-python anaconda-help booty - hdparm lvm rhpl pyxf86config libxml2 libxml2-python rdate libelf glib2" + hdparm lvm rhpl pyxf86config libxml2 libxml2-python rdate libelf + glib2 libstdc++" if [ $ARCH = x86_64 ]; then - PACKAGES="$PACKAGES libgcc libstdc++" + PACKAGES="$PACKAGES libgcc" fi if [ $ARCH = i386 -o $ARCH = x86_64 ]; then @@ -173,7 +174,7 @@ if [ $ARCH = alpha ]; then fi if [ $ARCH = x86_64 ]; then - PACKAGES="$PACKAGES libgcc libstdc++" + PACKAGES="$PACKAGES libgcc" fi if [ $ARCH = ia64 ]; then |