Author: alexander Date: 2007-08-04 09:49:25 -0600 (Sat, 04 Aug 2007) New Revision: 2007
Modified: trunk/Makefile Log: Fixed some typos in the Makefile. The 64-bit CD is still not buildable from 32-bit multilib Debian Lenny. Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2007-08-03 14:30:45 UTC (rev 2006) +++ trunk/Makefile 2007-08-04 15:49:25 UTC (rev 2007) @@ -27,6 +27,8 @@ ROOTFS_MEGS := 1536 # Machine architecure, LiveCD version, and specific arch variables. +# When building a 32-bit CD from a 64-bit multilib host, +# please use "linux32 make" instead of plain "make". #============================================================================== export CD_ARCH := $(shell uname -m | sed 's|i[3456]|x|') @@ -39,9 +41,9 @@ export LINKER := ld-linux.so.2 endif -ifeq ($(CD_ARH),x86_64) +ifeq ($(CD_ARCH),x86_64) export 64bit = true -export LFS_TARGET ?= $(MACHTYPE) +export LFS_TARGET ?= x86_64-unknown-linux-gnu export LINKER := ld-linux-x86-64.so.2 endif -- http://linuxfromscratch.org/mailman/listinfo/livecd FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
