From 08eb167b40d66da3b4a3a21351a8ed5b99fc3a83 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 24 Mar 2012 11:38:02 -0400 Subject: always build our libelf, as our libdwarf doesn't get along with the system libelf on linux --- libelf/elf_update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libelf/elf_update.c') diff --git a/libelf/elf_update.c b/libelf/elf_update.c index 284ff8d..9ae5a09 100644 --- a/libelf/elf_update.c +++ b/libelf/elf_update.c @@ -151,7 +151,7 @@ _libelf_compute_section_extents(Elf *e, Elf_Scn *s, off_t *rc) if ((uint64_t) d->d_off + d->d_size > scn_size) scn_size = d->d_off + d->d_size; } else { - scn_size = roundup2(scn_size, d->d_align); + scn_size = ROUNDUP2(scn_size, d->d_align); d->d_off = scn_size; scn_size += d->d_size; } -- cgit v1.2.3