- look at target variants when determining if syslinux is supported or not.

Closes #637
This commit is contained in:
Bernhard Reutner-Fischer 2006-11-28 10:01:46 +00:00
parent d15b0f98f1
commit 085f7b3ed9

View file

@ -1,4 +1,21 @@
SYSLINUX_SUPPORTED_ARCH=n
ifeq ($(ARCH),i386)
SYSLINUX_SUPPORTED_ARCH=y
endif
ifeq ($(ARCH),i486)
SYSLINUX_SUPPORTED_ARCH=y
endif
ifeq ($(ARCH),i586)
SYSLINUX_SUPPORTED_ARCH=y
endif
ifeq ($(ARCH),i686)
SYSLINUX_SUPPORTED_ARCH=y
endif
ifeq ($(ARCH),x86_64)
SYSLINUX_SUPPORTED_ARCH=y
endif
ifeq ($(SYSLINUX_SUPPORTED_ARCH),y)
#############################################################
#
# syslinux to make target msdos/iso9660 filesystems bootable