Dennis Gilmore (dennis@xxxxxxxx) said: > -elif [ "$BUILDARCH" = "sparcv9" -o "$BUILDARCH" = "sparc64" ]; then > +elif [ "$BUILDARCH" = "sparc" -o "$BUILDARCH" = "sparcv9" -o "$BUILDARCH" = "sparc64" ]; then > arches="sparc64" You could future-proof these by doing something like: elif [[ "$BUILDARCH" =~ "^sparc" ]]; as long as you make sure the scripts are "#!/bin/bash" instead of "#!/bin/sh". Then again, I don't know if we'll ever need to add another sparc arch conditional. Bill _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list