From: Bernhard Reutner-Fischer Date: Fri, 18 Jul 2008 07:42:00 +0000 (-0000) Subject: - fix compilation for mips (Brian Daniels) X-Git-Tag: 1_12_0~153 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a715e487dc6b37a996ff3041c332765dbba45a7;p=platform%2Fupstream%2Fbusybox.git - fix compilation for mips (Brian Daniels) --- diff --git a/modutils/insmod.c b/modutils/insmod.c index 77d36e1..01b619f 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -841,7 +841,7 @@ arch_apply_relocation(struct obj_file *f, { #if defined(__arm__) || defined(__i386__) || defined(__mc68000__) \ || defined(__sh__) || defined(__s390__) || defined(__x86_64__) \ - || defined(__powerpc__) + || defined(__powerpc__) || defined(__mips__) struct arch_file *ifile = (struct arch_file *) f; #endif enum obj_reloc ret = obj_reloc_ok;