wok rev 15870
linux: fix stupid typo! Now linux64 and linux without modules will build
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Jan 31 19:46:06 2014 +0100 (2014-01-31) |
parents | 52eb622a19b4 |
children | b62b949e9826 |
files | linux/receipt |
line diff
1.1 --- a/linux/receipt Fri Jan 31 16:18:31 2014 +0000 1.2 +++ b/linux/receipt Fri Jan 31 19:46:06 2014 +0100 1.3 @@ -129,11 +129,11 @@ 1.4 # 1.5 # Arch x86_64: TODO have a real cross environment 1.6 # 1.7 - if [ ! "nox64" ]; then 1.8 + if [ ! "$nox64" ]; then 1.9 echo "Compiling: x86_64 Kernel" 1.10 1.11 # Build bzImage64 without modules first 1.12 - if [ ! "nonomods" ]; then 1.13 + if [ ! "$nonomods" ]; then 1.14 cp -f $stuff/$PACKAGE-slitaz.config64 .config 1.15 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config 1.16 # We can't keep every driver in staging ??? 1.17 @@ -174,7 +174,7 @@ 1.18 echo "Compiling: i386 Kernel..." 1.19 1.20 # Build bzImage without modules first 1.21 - if [ ! "nonomods" ]; then 1.22 + if [ ! "$nonomods" ]; then 1.23 cp -f $stuff/$PACKAGE-slitaz.config .config 1.24 sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config 1.25 # We can't keep every driver in staging ???