]> gitweb.michael.orlitzky.com - bash.d.git/blobdiff - compilation
Use POSIX sh compatible syntax where possible.
[bash.d.git] / compilation
index a166d6678bdc9fca71f317b911f5b93c919bc63d..1dc51dee4bfddf6ea1ee3caf3009808a00130095 100644 (file)
@@ -1,14 +1,14 @@
-#!/bin/bash
+#!/bin/sh
 
 # Grab CFLAGS, etc. from the profile...
 if [ -f /etc/portage/make.profile/make.defaults ]; then
-    source /etc/portage/make.profile/make.defaults
+    . /etc/portage/make.profile/make.defaults
 fi
 
 # and from make.conf, allowing the values in make.conf to override the
 # ones in the profile.
 if [ -f /etc/portage/make.conf ]; then
-    source /etc/portage/make.conf
+    . /etc/portage/make.conf
 fi