Make a special case for macosx-ppc, which doesn't follow the factor naming scheme
parent
6e6ef7f9a8
commit
de2cc4b9de
|
@ -145,8 +145,13 @@ set_build_info() {
|
||||||
echo "OS, ARCH, or WORD is empty. Please report this"
|
echo "OS, ARCH, or WORD is empty. Please report this"
|
||||||
exit 5
|
exit 5
|
||||||
fi
|
fi
|
||||||
|
|
||||||
MAKE_TARGET=$OS-$ARCH-$WORD
|
MAKE_TARGET=$OS-$ARCH-$WORD
|
||||||
BOOT_IMAGE=boot.$ARCH.$WORD.image
|
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() {
|
find_build_info() {
|
||||||
|
|
Loading…
Reference in New Issue