]> gitweb.michael.orlitzky.com - bash.d.git/commitdiff
Use 'export' in front of all environment variables.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 15 Oct 2013 02:14:01 +0000 (22:14 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 15 Oct 2013 02:14:01 +0000 (22:14 -0400)
compilation
options
sage

index b13a39120562d3b8b0c2c3b4235c0a99bb307b8f..9aab1ac62f274fea8bf2055e805a15af1ad84636 100644 (file)
@@ -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 e353b0bf1178766d608fff6c2023cd68cc635a0e..35c91dd9ed572773a3c0c67f411219704187448b 100644 (file)
--- 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 f74ea1de2abc3bd7a40878a1cd95e73ca28e510b..44e317d6595b2047a08d442e72855882c22c4dc3 100644 (file)
--- 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