# HG changeset patch # User Christophe Lincoln # Date 1391193966 -3600 # Node ID 673b107f2fd78101475d4322462c7ffdb3f75ff0 # Parent 52eb622a19b402ad407580fb51bbd5e04797818d linux: fix stupid typo! Now linux64 and linux without modules will build diff -r 52eb622a19b4 -r 673b107f2fd7 linux/receipt --- a/linux/receipt Fri Jan 31 16:18:31 2014 +0000 +++ b/linux/receipt Fri Jan 31 19:46:06 2014 +0100 @@ -129,11 +129,11 @@ # # Arch x86_64: TODO have a real cross environment # - if [ ! "nox64" ]; then + if [ ! "$nox64" ]; then echo "Compiling: x86_64 Kernel" # Build bzImage64 without modules first - if [ ! "nonomods" ]; then + if [ ! "$nonomods" ]; then cp -f $stuff/$PACKAGE-slitaz.config64 .config sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config # We can't keep every driver in staging ??? @@ -174,7 +174,7 @@ echo "Compiling: i386 Kernel..." # Build bzImage without modules first - if [ ! "nonomods" ]; then + if [ ! "$nonomods" ]; then cp -f $stuff/$PACKAGE-slitaz.config .config sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config # We can't keep every driver in staging ???