tazwok diff examples/tazwok.conf @ rev 554

Compatibility fix for $install variable in compile_rules
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Mar 11 19:13:46 2012 +0100 (2012-03-11)
parents 5dbe2cc5a2e1 44e24b12e9dd
children
line diff
     1.1 --- a/examples/tazwok.conf	Wed Jul 06 12:28:01 2011 +0000
     1.2 +++ b/examples/tazwok.conf	Sun Mar 11 19:13:46 2012 +0100
     1.3 @@ -28,7 +28,12 @@
     1.4  # USE_ONLINE_PKG="$MIRROR"
     1.5  
     1.6  # Default makeflags.
     1.7 -MAKEFLAGS="-j$((`grep processor /proc/cpuinfo | wc -l`+1))"
     1.8 +# This one make compilation use all cpu when possible, and have
     1.9 +# priority hover other processes.
    1.10 +# MAKEFLAGS="-j$((`grep processor /proc/cpuinfo | wc -l`+1))"
    1.11 +# This one makes use of all cpu but without priority, so if you
    1.12 +# run something else it can run smoothly even while compiling.
    1.13 +MAKEFLAGS="-j`grep processor /proc/cpuinfo | wc -l`"
    1.14  
    1.15  # Default architecture.
    1.16  ARCH="i486"
    1.17 @@ -36,12 +41,8 @@
    1.18  # Build and host. These options are for cross-compiling. If you specify
    1.19  # both options and BUILD_SYSTEM is different from HOST_SYSTEM, configure
    1.20  # will prepare to cross-compile from BUILD_SYSTEM to be used on HOST_SYSTEM.
    1.21 -BUILD_SYSTEM="$(uname -m)-slitaz-linux"
    1.22 -#BUILD_SYSTEM="$ARCH-slitaz-linux"
    1.23 -HOST_SYSTEM="$ARCH-slitaz-linux"
    1.24 -
    1.25 -# Default build host.
    1.26 -BUILD_HOST="$HOST_SYSTEM"
    1.27 +BUILD_SYSTEM="$ARCH-pc-linux-gnu"
    1.28 +HOST_SYSTEM="$ARCH-pc-linux-gnu"
    1.29  
    1.30  # Default compilation flags.
    1.31  # More details at :