diff config @ 496:3cebbc0b0723

Rename (invert) NATIVE_NOTOOLCHAIN and NATIVE_NOTOOLSDIR, and tweak colors again.
author Rob Landley <rob@landley.net>
date Mon, 24 Nov 2008 09:09:16 -0600
parents b0438691e9e1
children e4f6da942dbf
line wrap: on
line diff
--- a/config	Sat Nov 22 00:02:09 2008 -0600
+++ b/config	Mon Nov 24 09:09:16 2008 -0600
@@ -4,13 +4,13 @@
 # and busybox.  (Set it to "headers" to include kernel headers if you'd like
 # to add your own toolchain, such as tinycc.)
 
-# export NATIVE_NOTOOLCHAIN=1
-# export NATIVE_NOTOOLCHAIN=headers
+[ -z "$NATIVE_TOOLCHAIN" ] && export NATIVE_TOOLCHAIN=1
+# export NATIVE_TOOLCHAIN=headers
 
-# If this is set, mini-native will built a more conventional filesystem layout
-# instead of a Linux From Scratch style /tools directory.
+# If this is set, mini-native will built a Linux From Scratch style /tools
+# directory instead of a more conventional filesystem layout in /usr.
 
-# export NATIVE_NOTOOLSDIR=1
+# export NATIVE_TOOLSDIR=1
 
 # If this is set, the build records the command lines run by each build into
 # log files in the build directory, ala "build/cmdlines.$PACKAGENAME"
@@ -36,8 +36,11 @@
 # If you'd like to change colors, do so here.  If you want to eliminate colors,
 # comment these out.
 
-export DOWNLOAD_COLOR="\e[34m"
-export HOST_COLOR="\e[37m"
-export CROSS_COLOR="\e[33m"
-export NATIVE_COLOR="\e[35m"
-export PACKAGE_COLOR="\e[36m"
+# Black background 
+export BACKGROUND_COLOR="\e[40m"
+
+export DOWNLOAD_COLOR="$BACKGROUND_COLOR\e[34m"
+export HOST_COLOR="$BACKGROUND_COLOR\e[37m"
+export CROSS_COLOR="$BACKGROUND_COLOR\e[33m"
+export NATIVE_COLOR="$BACKGROUND_COLOR\e[35m"
+export PACKAGE_COLOR="$BACKGROUND_COLOR\e[36m"