Make a special case for macosx-ppc, which doesn't follow the factor naming scheme

release
Doug Coleman 2007-11-24 21:41:58 -06:00
parent 6e6ef7f9a8
commit de2cc4b9de
1 changed files with 5 additions and 0 deletions

View File

@ -145,8 +145,13 @@ set_build_info() {
echo "OS, ARCH, or WORD is empty. Please report this"
exit 5
fi
MAKE_TARGET=$OS-$ARCH-$WORD
BOOT_IMAGE=boot.$ARCH.$WORD.image
if [[ $OS == macosx && $ARCH=ppc ]] ; then
MAKE_TARGET=$OS-$ARCH
BOOT_IMAGE=boot.macosx-ppc.image
fi
}
find_build_info() {