From d1d4ea370080589ef7b6d891fdf70d433485187c Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 18 Aug 2013 11:58:23 -0400 Subject: lib/*.sh, lib/*/*.sh: Rewrite include guards. This is one step toward adding `set -u` to opkbuild. --- (limited to 'lib/load.sh') diff --git a/lib/load.sh b/lib/load.sh index 685f414..a061005 100644 --- a/lib/load.sh +++ b/lib/load.sh @@ -17,8 +17,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -[ -n "${_OB_LOAD_SM}" ] && return 0 -_OB_LOAD_SM='true' +[ x"${_OB_LOAD_SM+set}" = x'set' ] && return 0 +_OB_LOAD_SM=1 # The "common" module is used by this and all other modules. # We have to manually load the "common" module so we can use it in ob_use. -- cgit v0.9.1