Remove syslinux (former name of system unit), which is obsolete for clean rules

This commit is contained in:
Pierre Muller 2023-09-19 21:46:00 +00:00
parent f699b282df
commit 82b37300a8
4 changed files with 26 additions and 26 deletions

View File

@ -976,22 +976,22 @@ ifeq ($(CPU_OS_TARGET),aarch64-android)
override TARGET_RSTS+=math typinfo sysconst rtlconsts override TARGET_RSTS+=math typinfo sysconst rtlconsts
endif endif
ifeq ($(CPU_OS_TARGET),i386-android) ifeq ($(CPU_OS_TARGET),i386-android)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),x86_64-android) ifeq ($(CPU_OS_TARGET),x86_64-android)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),arm-android) ifeq ($(CPU_OS_TARGET),arm-android)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),mipsel-android) ifeq ($(CPU_OS_TARGET),mipsel-android)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),jvm-android) ifeq ($(CPU_OS_TARGET),jvm-android)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),aarch64-android) ifeq ($(CPU_OS_TARGET),aarch64-android)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
override INSTALL_FPCPACKAGE=y y override INSTALL_FPCPACKAGE=y y
ifeq ($(CPU_OS_TARGET),i386-android) ifeq ($(CPU_OS_TARGET),i386-android)

View File

@ -22,7 +22,7 @@ rsts=math typinfo sysconst rtlconsts
nortl=y nortl=y
[clean] [clean]
units=syslinux $(LINUXUNIT) units=$(LINUXUNIT)
[install] [install]
fpcpackage=y fpcpackage=y

View File

@ -1176,58 +1176,58 @@ ifeq ($(CPU_OS_TARGET),loongarch64-linux)
override TARGET_RSTS+=math typinfo sysconst rtlconsts override TARGET_RSTS+=math typinfo sysconst rtlconsts
endif endif
ifeq ($(CPU_OS_TARGET),i386-linux) ifeq ($(CPU_OS_TARGET),i386-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),m68k-linux) ifeq ($(CPU_OS_TARGET),m68k-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),powerpc-linux) ifeq ($(CPU_OS_TARGET),powerpc-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),sparc-linux) ifeq ($(CPU_OS_TARGET),sparc-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),x86_64-linux) ifeq ($(CPU_OS_TARGET),x86_64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),arm-linux) ifeq ($(CPU_OS_TARGET),arm-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),powerpc64-linux) ifeq ($(CPU_OS_TARGET),powerpc64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),armeb-linux) ifeq ($(CPU_OS_TARGET),armeb-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),mips-linux) ifeq ($(CPU_OS_TARGET),mips-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),mipsel-linux) ifeq ($(CPU_OS_TARGET),mipsel-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),mips64-linux) ifeq ($(CPU_OS_TARGET),mips64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),mips64el-linux) ifeq ($(CPU_OS_TARGET),mips64el-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),aarch64-linux) ifeq ($(CPU_OS_TARGET),aarch64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),sparc64-linux) ifeq ($(CPU_OS_TARGET),sparc64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),riscv32-linux) ifeq ($(CPU_OS_TARGET),riscv32-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),riscv64-linux) ifeq ($(CPU_OS_TARGET),riscv64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),xtensa-linux) ifeq ($(CPU_OS_TARGET),xtensa-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
ifeq ($(CPU_OS_TARGET),loongarch64-linux) ifeq ($(CPU_OS_TARGET),loongarch64-linux)
override CLEAN_UNITS+=syslinux $(LINUXUNIT) override CLEAN_UNITS+=$(LINUXUNIT)
endif endif
override INSTALL_FPCPACKAGE=y y override INSTALL_FPCPACKAGE=y y
ifeq ($(CPU_OS_TARGET),i386-linux) ifeq ($(CPU_OS_TARGET),i386-linux)

View File

@ -27,7 +27,7 @@ rsts=math typinfo sysconst rtlconsts
nortl=y nortl=y
[clean] [clean]
units=syslinux $(LINUXUNIT) units=$(LINUXUNIT)
[install] [install]
fpcpackage=y fpcpackage=y