Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 May 2019 05:33:48 +0000 (UTC)
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r348093 - in stable/12/sys/modules: linux linux64
Message-ID:  <201905220533.x4M5XmV9099822@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905220533.x4M5XmV9099822>