svn commit: r348093 - in stable/12/sys/modules: linux linux64

Dmitry Chagin dchagin at FreeBSD.org
Wed May 22 05:33:49 UTC 2019


Author: dchagin
Date: Wed May 22 05:33:47 2019
New Revision: 348093
URL: https://svnweb.freebsd.org/changeset/base/348093

Log:
  MFC r347196:
  
  The build process generates assym.inc from genassym.o, so don't forget
  to clean genassym.o

Modified:
  stable/12/sys/modules/linux/Makefile
  stable/12/sys/modules/linux64/Makefile
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/modules/linux/Makefile
==============================================================================
--- stable/12/sys/modules/linux/Makefile	Wed May 22 05:32:39 2019	(r348092)
+++ stable/12/sys/modules/linux/Makefile	Wed May 22 05:33:47 2019	(r348093)
@@ -47,7 +47,8 @@ EXPORT_SYMS+=	linux_ioctl_register_handler
 EXPORT_SYMS+=	linux_ioctl_unregister_handler
 .endif
 
-CLEANFILES=	linux${SFX}_assym.h linux${SFX}_genassym.o linux${SFX}_locore.o
+CLEANFILES=	linux${SFX}_assym.h linux${SFX}_genassym.o linux${SFX}_locore.o \
+		genassym.o
 
 linux${SFX}_assym.h: linux${SFX}_genassym.o
 	sh ${SYSDIR}/kern/genassym.sh linux${SFX}_genassym.o > ${.TARGET}

Modified: stable/12/sys/modules/linux64/Makefile
==============================================================================
--- stable/12/sys/modules/linux64/Makefile	Wed May 22 05:32:39 2019	(r348092)
+++ stable/12/sys/modules/linux64/Makefile	Wed May 22 05:33:47 2019	(r348093)
@@ -21,7 +21,8 @@ SRCS+=  opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h
 SRCS+=	opt_apic.h
 .endif
 
-CLEANFILES=	linux_assym.h linux_genassym.o linux_locore.o
+CLEANFILES=	linux_assym.h linux_genassym.o linux_locore.o \
+		genassym.o
 
 OBJS=	${VDSO}.so
 


More information about the svn-src-stable mailing list