util/pkgbuild: guard against unset variable
Allows use under 'set -u'.
This commit is contained in:
parent
6b541404cc
commit
555c8ff976
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
|
||||||
[[ -n "$LIBMAKEPKG_UTIL_PKGBUILD_SH" ]] && return
|
[[ -n "${LIBMAKEPKG_UTIL_PKGBUILD_SH:-}" ]] && return
|
||||||
LIBMAKEPKG_UTIL_PKGBUILD_SH=1
|
LIBMAKEPKG_UTIL_PKGBUILD_SH=1
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue