From d8d14246f041acc7b29b2e8946367bcc39c23b85 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 14 Oct 2013 22:14:01 -0400 Subject: [PATCH] Use 'export' in front of all environment variables. --- compilation | 4 ++-- options | 4 ++-- sage | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/compilation b/compilation index b13a391..9aab1ac 100644 --- a/compilation +++ b/compilation @@ -4,7 +4,7 @@ source /etc/portage/make.conf # LDFLAGS comes from.. somewhere else. -LDFLAGS="-Wl,-O1 -Wl,--as-needed" +export LDFLAGS="-Wl,-O1 -Wl,--as-needed" # Portage does this for us. -MAKE="make ${MAKEOPTS}" +export MAKE="make ${MAKEOPTS}" diff --git a/options b/options index e353b0b..35c91dd 100644 --- a/options +++ b/options @@ -1,7 +1,7 @@ #!/bin/bash # This works for all versions of grep. -GREP_OPTIONS="--color=always" +export GREP_OPTIONS="--color=always" # No stupid disclaimers. -WHOIS_OPTIONS="-H" +export WHOIS_OPTIONS="-H" diff --git a/sage b/sage index f74ea1d..44e317d 100644 --- a/sage +++ b/sage @@ -1,4 +1,4 @@ #!/bin/bash # This is the default, but let's make sure. -SAGE_INSTALL_GCC=no +export SAGE_INSTALL_GCC=no -- 2.43.2