----- Original Message -----
From: "H. Peter Anvin" <hpa at zytor.com>
To: <SYSLINUX at zytor.com>; <syslinux-announce at zytor.com>
Sent: Thursday, February 08, 2007 7:04 PM
Subject: [syslinux] SYSLINUX 3.36-pre7, release candidate
> I have pushed out SYSLINUX 3.36-pre7, which should help resolve the PXE
> chainloading regression.
>
> I am going to be out of town starting Sunday, and I would like to push
> out 3.36 before then, so if you have the ability at all, please test
> 3.36-pre7 *TODAY*.
>
I find what was wrong on libutil Makefile, it is just a typo
This fix the bug
-M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-fno_stack_protector,)
+M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-fno-stack-protector,)
Gilles