From: Michael Orlitzky Date: Tue, 15 Oct 2013 02:14:01 +0000 (-0400) Subject: Use 'export' in front of all environment variables. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=bash.d.git;a=commitdiff_plain;h=d8d14246f041acc7b29b2e8946367bcc39c23b85 Use 'export' in front of all environment variables. --- 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