Browse Source

Changed syslinux to recompile tools in Makefile's $(ITARGET), and to install mkdiskimage

early
Alejandro Mery 17 years ago
parent
commit
f2873e3434
  1. 15
      x86/syslinux/syslinux.conf

15
x86/syslinux/syslinux.conf

@ -14,9 +14,20 @@
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
# we want (do we?) to rebuild ITARGET tools
#
var_append makeopt ' ' '$ITARGET'
hook_add preconf 5 'syslinux_itarget_prepare'
syslinux_itarget_prepare() {
export ITARGET=$( grep ^ITARGET Makefile | cut -d= -f2- )
# just run 'make install'
makeopt=
rm -v $ITARGET
}
# install mkdiskimage
#
hook_add postmake 5 "cp -v mkdiskimage $root$bindir/"
var_remove GCC2_WRAPPER_INSERT ' ' "-fstack-protector"
var_remove GCC3_WRAPPER_INSERT ' ' "-fstack-protector"

Loading…
Cancel
Save