diff options
author | emaste <emaste@FreeBSD.org> | 2016-01-18 15:30:15 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-01-18 15:30:15 +0000 |
commit | 1be9b7c51aea8fe1c66a7c79feafe4be9416378d (patch) | |
tree | 30066d5af87c49f0558a65f744f4d9d3cd17e76b /sys/boot/efi/loader | |
parent | 357c6ab5c13d151385c6c5e995295fbd4fc2e5aa (diff) | |
download | FreeBSD-src-1be9b7c51aea8fe1c66a7c79feafe4be9416378d.zip FreeBSD-src-1be9b7c51aea8fe1c66a7c79feafe4be9416378d.tar.gz |
MFC r287930: Various small cleanups to EFI loader Makefiles.
Diffstat (limited to 'sys/boot/efi/loader')
-rw-r--r-- | sys/boot/efi/loader/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/boot/efi/loader/Makefile b/sys/boot/efi/loader/Makefile index 8d3fe87..268edce 100644 --- a/sys/boot/efi/loader/Makefile +++ b/sys/boot/efi/loader/Makefile @@ -12,7 +12,6 @@ MK_SSP= no PROG= loader.sym INTERNALPROG= -.PATH: ${.CURDIR}/../../efi/loader # architecture-specific loader code SRCS= autoload.c \ bootinfo.c \ @@ -80,7 +79,7 @@ EFI_TARGET= efi-app-x86_64 EFI_TARGET= efi-app-ia32 .endif -loader.efi: loader.sym +loader.efi: ${PROG} if [ `${OBJDUMP} -t ${.ALLSRC} | fgrep '*UND*' | wc -l` != 0 ]; then \ ${OBJDUMP} -t ${.ALLSRC} | fgrep '*UND*'; \ exit 1; \ |