configure does now check the yasm version for target architecture x86, and

sets the HAIKU_YASM build variable, which will be checked in BuildSetup.
Re-running configure or adding the variable manually to
generated/build/BuildConfig is required.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30145 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-04-13 10:50:17 +00:00
parent 4e5a71dd76
commit 77e84f219a
3 changed files with 39 additions and 6 deletions
+2 -2
View File
@@ -175,9 +175,9 @@ rule AssembleNasm
actions AssembleNasm
{
if test $(ASFLAGS) ; then
yasm -d $(ASFLAGS) -f elf32 -o $(1) $(2);
$(HAIKU_YASM) -d $(ASFLAGS) -f elf32 -o $(1) $(2);
else
yasm -f elf32 -o $(1) $(2);
$(HAIKU_YASM) -f elf32 -o $(1) $(2);
fi
}