From 07628e25b16baec5328629b9283bd5fe0f6a124a Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Sun, 25 Feb 2007 15:47:10 +0000 Subject: [PATCH] * changed to use TARGET_CC instead of host as. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20229 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/pxe_ia32/Jamfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/system/boot/platform/pxe_ia32/Jamfile b/src/system/boot/platform/pxe_ia32/Jamfile index 42c6014849..5f484df721 100644 --- a/src/system/boot/platform/pxe_ia32/Jamfile +++ b/src/system/boot/platform/pxe_ia32/Jamfile @@ -63,11 +63,9 @@ rule BuildPXEstage1 bin : source { } -# TODO: "as" should be replaced by $(TARGET_CC), but it fails for older GNU As -# versions. actions BuildPXEstage1 { rm -f $(1) - as -o $(1).o $(2) && + $(TARGET_CC) -c -o $(1).o $(2) && $(TARGET_LD) --oformat binary --Ttext 0x7C00 -o $(1) $(1).o }