From: Bdale Garbee Date: Mon, 9 Nov 2009 16:12:34 +0000 (-0800) Subject: fix paths to enable ia32 build on x86_64 host X-Git-Tag: debian/3.12-2~3 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b660193b9ae7fe01f3a3fcdf463fbdd0f6b0ceac;p=debian%2Felilo fix paths to enable ia32 build on x86_64 host --- diff --git a/debian/changelog b/debian/changelog index 9d3fa46..ab6abd6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +elilo (3.12-2) UNRELEASED; urgency=low + + * fix paths to support cross-building in ia32/Makefile, closes: #555153 + + -- Bdale Garbee Mon, 09 Nov 2009 08:11:23 -0800 + elilo (3.12-1) unstable; urgency=low * new upstream version, closes: #376002 diff --git a/ia32/Makefile b/ia32/Makefile index dadffac..c5f421b 100644 --- a/ia32/Makefile +++ b/ia32/Makefile @@ -42,8 +42,8 @@ all: $(TARGET) system.o: rmswitch.h rmswitch.h: bin_to_h.c rmswitch.S - $(CC) -o bin_to_h bin_to_h.c - $(AS) -o rmswitch.o rmswitch.S + $(CC) -o bin_to_h $(SRCDIR)/bin_to_h.c + $(AS) -o rmswitch.o $(SRCDIR)/rmswitch.S $(LD) -Ttext 0x0 -s --oformat binary -o rmswitch rmswitch.o ./bin_to_h rmswitch.h