Author: jhuntwork Date: 2005-09-05 12:16:28 -0600 (Mon, 05 Sep 2005) New Revision: 607
Modified: x86/trunk/Makefile Log: Refined declaration of ARCH variable Modified: x86/trunk/Makefile =================================================================== --- x86/trunk/Makefile 2005-09-05 18:13:01 UTC (rev 606) +++ x86/trunk/Makefile 2005-09-05 18:16:28 UTC (rev 607) @@ -14,11 +14,12 @@ # Unless otherwise noted, please try to keep all line lengths below 80 chars. # -# LiveCD version and Linux kernel version +# Machine architecure, LiveCD version, and Linux kernel version. +# Edit the ARCH and VERSION variables if you are building for a non-x86 arch. #============================================================================== -export VERSION := x86-6.2-pre1 +export ARCH := x86 +export VERSION := $(ARCH)-6.2-pre1 export KVERS := 2.6.12.3 -export ARCH := x86 # Edit this line to match the mount-point of the partition you'll be using to -- http://linuxfromscratch.org/mailman/listinfo/livecd FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
