summaryrefslogtreecommitdiff
path: root/cross/bfd-crunchide
diff options
context:
space:
mode:
authorkristerw <kristerw>2006-08-24 20:18:04 +0000
committerkristerw <kristerw>2006-08-24 20:18:04 +0000
commitab3020758209a6cf129c9649f1a3ca6339770db0 (patch)
tree8cac7b513eee30efc221aca280a07a7fcabe060c /cross/bfd-crunchide
parent7f1e7f41c0c524ad788f65ae210846e3bc82312e (diff)
downloadpkgsrc-ab3020758209a6cf129c9649f1a3ca6339770db0.tar.gz
Make this build with cross/binutils 2.17.0.0, and bump PKGREVISION for
ABI change in the new binutils.
Diffstat (limited to 'cross/bfd-crunchide')
-rw-r--r--cross/bfd-crunchide/Makefile4
-rw-r--r--cross/bfd-crunchide/files/crunchide.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/cross/bfd-crunchide/Makefile b/cross/bfd-crunchide/Makefile
index 73ba0d12bc9..fad35440b11 100644
--- a/cross/bfd-crunchide/Makefile
+++ b/cross/bfd-crunchide/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.16 2005/12/05 20:49:56 rillig Exp $
+# $NetBSD: Makefile,v 1.17 2006/08/24 20:23:27 kristerw Exp $
DISTNAME= bfd-crunchide-1.1
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= cross
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/cross/bfd-crunchide/files/crunchide.c b/cross/bfd-crunchide/files/crunchide.c
index 7e197437929..f6683f1969f 100644
--- a/cross/bfd-crunchide/files/crunchide.c
+++ b/cross/bfd-crunchide/files/crunchide.c
@@ -1,4 +1,4 @@
-/* $NetBSD: crunchide.c,v 1.3 2004/08/02 02:02:30 kristerw Exp $ */
+/* $NetBSD: crunchide.c,v 1.4 2006/08/24 20:23:28 kristerw Exp $ */
/* NetBSD: crunchide.c,v 1.9 1999/01/11 22:40:00 kleink Exp */
/*
@@ -63,7 +63,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: crunchide.c,v 1.3 2004/08/02 02:02:30 kristerw Exp $");
+__RCSID("$NetBSD: crunchide.c,v 1.4 2006/08/24 20:23:28 kristerw Exp $");
#endif
#include <unistd.h>
@@ -406,7 +406,7 @@ copy_section(ibfd, isection, arg)
long relcount, relsize;
osection = isection->output_section;
- size = bfd_get_section_size_before_reloc(isection);
+ size = isection->rawsize;
if (size == 0 || osection == 0)
return;
@@ -424,7 +424,7 @@ copy_section(ibfd, isection, arg)
bfd_set_reloc(obfd, osection, relpp, relcount);
}
- isection->_cooked_size = isection->_raw_size;
+ isection->size = isection->rawsize;
isection->reloc_done = 1;
if (bfd_get_section_flags(ibfd, isection) & SEC_HAS_CONTENTS) {