diff options
author | imp <imp@FreeBSD.org> | 2006-09-14 07:48:16 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-09-14 07:48:16 +0000 |
commit | b39fe596806b70a33b29277806818407be3df3fa (patch) | |
tree | c896259a7b0a81ed99d55f0abb620e1f7e0a2290 /gnu/usr.bin | |
parent | 75f1f3b6a149ef64d6d36d942129f5726afaf594 (diff) | |
download | FreeBSD-src-b39fe596806b70a33b29277806818407be3df3fa.zip FreeBSD-src-b39fe596806b70a33b29277806818407be3df3fa.tar.gz |
fix the build: add missing end of line cont character
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/libbfd/Makefile.arm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.arm b/gnu/usr.bin/binutils/libbfd/Makefile.arm index 549712a..a970aa0 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.arm +++ b/gnu/usr.bin/binutils/libbfd/Makefile.arm @@ -7,8 +7,8 @@ DEFAULT_VECTOR= bfd_elf32_littlearm_vec .endif SRCS+= cpu-arm.c \ - elf32-arm-fbsd.c \ elf32.c \ + elf32-arm-fbsd.c \ elf32-gen.c \ elf32-target.h \ elflink.c @@ -20,6 +20,8 @@ VECS+= bfd_elf32_littlearm_vec VECS+= bfd_elf32_bigarm_vec .endif +CFLAGS+= -DDEFAULT_VECTOR=${DEFAULT_VECTOR} + CLEANFILES+= elf32-arm-fbsd.c # XXX: We should really add the FreeBSD case in elf32_arm_nabi_grok_prstatus @@ -28,9 +30,9 @@ CLEANFILES+= elf32-arm-fbsd.c elf32-arm-fbsd.c: elfarm-nabi.c cat ${.ALLSRC} | sed \ -e s/ELFOSABI_ARM/ELFOSABI_FREEBSD/g \ - -e "s/\(.*#define.*\)elf32_arm_nabi_grok_prstatus/\1elf32_fbsd_arm_grok_prstatus/" + -e "s/\(.*#define.*\)elf32_arm_nabi_grok_prstatus/\1elf32_fbsd_arm_grok_prstatus/" \ -e s/"#include.*elf32-arm.h.*//" >${.TARGET} - echo '\ + echo ' \ static bfd_boolean \ elf32_fbsd_arm_grok_prstatus(bfd *abfd, Elf_Internal_Note *note) \ { size_t raw_size =68 ; int offset = 28; \ |