* 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
This commit is contained in:
Oliver Tappe 2007-02-25 15:47:10 +00:00
parent 6e2615e2d1
commit 07628e25b1

View File

@ -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
}