svn commit: r326440 - in head/stand: efi/boot1 i386/gptboot powerpc/boot1.chrp sparc64/boot1
Warner Losh
imp at FreeBSD.org
Sat Dec 2 00:06:53 UTC 2017
Author: imp
Date: Sat Dec 2 00:06:52 2017
New Revision: 326440
URL: https://svnweb.freebsd.org/changeset/base/326440
Log:
Remove stale dependency on ufsread.c
Remove the now-useless dependency on ufsread.c. In some cases, it was
on the wrong file. But in all cases, we now automatically generate
.depend files, so we don't need it explicitly.
Sponsored by: Netflix
Modified:
head/stand/efi/boot1/Makefile
head/stand/i386/gptboot/Makefile
head/stand/powerpc/boot1.chrp/Makefile
head/stand/sparc64/boot1/Makefile
Modified: head/stand/efi/boot1/Makefile
==============================================================================
--- head/stand/efi/boot1/Makefile Fri Dec 1 22:52:45 2017 (r326439)
+++ head/stand/efi/boot1/Makefile Sat Dec 2 00:06:52 2017 (r326440)
@@ -106,8 +106,6 @@ boot1.efi: ${PROG}
-j .rela.dyn -j .reloc -j .eh_frame \
--output-target=${EFI_TARGET} ${.ALLSRC} ${.TARGET}
-boot1.o: ${SASRC}/ufsread.c
-
# The following inserts our objects into a template FAT file system
# created by generate-fat.sh
Modified: head/stand/i386/gptboot/Makefile
==============================================================================
--- head/stand/i386/gptboot/Makefile Fri Dec 1 22:52:45 2017 (r326439)
+++ head/stand/i386/gptboot/Makefile Sat Dec 2 00:06:52 2017 (r326440)
@@ -67,8 +67,6 @@ gptboot.bin: gptboot.out
gptboot.out: ${BTXCRT} gptboot.o sio.o crc32.o drv.o cons.o ${OPENCRYPTO_XTS}
${LD} ${LD_FLAGS} -Ttext ${ORG2} -o ${.TARGET} ${.ALLSRC} ${LIBGELIBOOT} ${LIBSA32}
-gptboot.o: ${SASRC}/ufsread.c
-
.include <bsd.prog.mk>
# XXX: clang integrated-as doesn't grok .codeNN directives yet
Modified: head/stand/powerpc/boot1.chrp/Makefile
==============================================================================
--- head/stand/powerpc/boot1.chrp/Makefile Fri Dec 1 22:52:45 2017 (r326439)
+++ head/stand/powerpc/boot1.chrp/Makefile Sat Dec 2 00:06:52 2017 (r326440)
@@ -34,7 +34,5 @@ boot1.hfs: boot1.elf bootinfo.txt
CLEANFILES+= boot1.hfs
-boot1.o: ${SASRC}/ufsread.c
-
.include <bsd.prog.mk>
Modified: head/stand/sparc64/boot1/Makefile
==============================================================================
--- head/stand/sparc64/boot1/Makefile Fri Dec 1 22:52:45 2017 (r326439)
+++ head/stand/sparc64/boot1/Makefile Sat Dec 2 00:06:52 2017 (r326440)
@@ -27,6 +27,4 @@ ${FILES}: boot1.aout
boot1.aout: boot1.elf
elf2aout -o ${.TARGET} ${.ALLSRC}
-boot1.o: ${SASRC}/ufsread.c
-
.include <bsd.prog.mk>
More information about the svn-src-all
mailing list