From: Ondrej Zajicek Date: Wed, 4 Aug 2010 11:53:52 +0000 (+0200) Subject: Fixes build on Sparc. X-Git-Tag: v1.3.0~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=373d3dbe8dfbce21af72618c0f912dd0e23a6f3c;p=thirdparty%2Fbird.git Fixes build on Sparc. --- diff --git a/tools/Rules.in b/tools/Rules.in index e4598e212..fc06aeb1d 100644 --- a/tools/Rules.in +++ b/tools/Rules.in @@ -66,7 +66,9 @@ else subdir: all.o all.o: $(objs) - $(CC) -nostdlib -Wl,-r -o $@ $^ +# $(LD) -r -o $@ $^ +# Changed to $(CC) because $(LD) has problems with crosscompiling + $(CC) -nostdlib -r -o $@ $^ endif