Author: emaste Date: Mon Feb 5 14:53:18 2018 New Revision: 328883 URL: https://svnweb.freebsd.org/changeset/base/328883
Log: Move assym.s to DPSRCS in linux modules assym.s exists only to be included by other .s files, and should not actually be assembled by itself. Sponsored by: Turing Robotic Industries Inc. Modified: head/sys/modules/linux/Makefile head/sys/modules/linux64/Makefile Modified: head/sys/modules/linux/Makefile ============================================================================== --- head/sys/modules/linux/Makefile Mon Feb 5 14:30:27 2018 (r328882) +++ head/sys/modules/linux/Makefile Mon Feb 5 14:53:18 2018 (r328883) @@ -17,9 +17,9 @@ SRCS= linux_fork.c linux${SFX}_dummy.c linux_file.c li linux${SFX}_sysvec.c linux_uid16.c linux_time.c \ linux_timer.c linux_vdso.c \ opt_inet6.h opt_compat.h opt_posix.h opt_usb.h vnode_if.h \ - device_if.h bus_if.h assym.s \ + device_if.h bus_if.h \ linux${SFX}_support.s -DPSRCS= linux${SFX}_genassym.c +DPSRCS= assym.s linux${SFX}_genassym.c # XXX: for assym.s SRCS+= opt_kstack_pages.h opt_nfs.h opt_compat.h opt_hwpmc_hooks.h Modified: head/sys/modules/linux64/Makefile ============================================================================== --- head/sys/modules/linux64/Makefile Mon Feb 5 14:30:27 2018 (r328882) +++ head/sys/modules/linux64/Makefile Mon Feb 5 14:53:18 2018 (r328883) @@ -11,9 +11,9 @@ SRCS= linux_fork.c linux_dummy.c linux_file.c linux_ev linux_socket.c linux_stats.c linux_sysctl.c linux_sysent.c \ linux_sysvec.c linux_time.c linux_vdso.c linux_timer.c \ opt_inet6.h opt_compat.h opt_posix.h opt_usb.h \ - vnode_if.h device_if.h bus_if.h assym.s \ + vnode_if.h device_if.h bus_if.h \ linux_support.s -DPSRCS= linux_genassym.c +DPSRCS= assym.s linux_genassym.c # XXX: for assym.s SRCS+= opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"