From f798b14aba7f6c0b9a30c7d169fe6b997613ed1c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 7 Dec 2017 16:53:49 -0500 Subject: [PATCH] Use POSIX sh compatible syntax where possible. --- aliases | 2 +- compilation | 6 +++--- options | 2 +- sage | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/aliases b/aliases index 2d85320..405d02b 100644 --- a/aliases +++ b/aliases @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh alias df='df --human-readable' alias du='du --human-readable --summarize *' diff --git a/compilation b/compilation index a166d66..1dc51de 100644 --- a/compilation +++ b/compilation @@ -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 diff --git a/options b/options index 9bbe669..a833df7 100644 --- a/options +++ b/options @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # No stupid disclaimers. export WHOIS_OPTIONS="-H" diff --git a/sage b/sage index 44e317d..e1dd0bd 100644 --- a/sage +++ b/sage @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # This is the default, but let's make sure. export SAGE_INSTALL_GCC=no -- 2.43.2