diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-27 20:59:15 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-27 20:59:15 +0000 |
commit | f1cf3c01d6b9ccc5e647ec84e988434dae9e3458 (patch) | |
tree | bb3a2c28fd3a6da26d609094ff5006a9d7a3e3eb | |
parent | 9903524672dc375c5dad43e14f723dc8eb8c1d85 (diff) | |
download | anaconda-f1cf3c01d6b9ccc5e647ec84e988434dae9e3458.tar.gz anaconda-f1cf3c01d6b9ccc5e647ec84e988434dae9e3458.tar.xz anaconda-f1cf3c01d6b9ccc5e647ec84e988434dae9e3458.zip |
strip out sparcv9
-rwxr-xr-x | upd-instroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd-instroot b/upd-instroot index ddc5cd1c8..26dc694c7 100755 --- a/upd-instroot +++ b/upd-instroot @@ -195,7 +195,7 @@ fi for I in $PACKAGES; do for J in `ls $SRC/$I*`; do if [ "$I" != "rpm-devel" ]; then - if ! echo $J | grep devel > /dev/null; then + if ! echo $J | egrep "(devel|sparcv9)" > /dev/null; then RPMS="$RPMS $J" fi else |