summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x.travis/install-gpg.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/install-gpg.sh b/.travis/install-gpg.sh
index 667f1b83..9cd6f3e4 100755
--- a/.travis/install-gpg.sh
+++ b/.travis/install-gpg.sh
@@ -11,7 +11,9 @@ wget "https://www.gnupg.org/ftp/gcrypt/$package/$package-$version.tar.bz2" -O "/
11cd /tmp 11cd /tmp
12tar xvfa "/tmp/$package.tar.bz2" 12tar xvfa "/tmp/$package.tar.bz2"
13cd "$package-$version" 13cd "$package-$version"
14./configure "${configure_opts[@]}" 14# Expand configure_opts only if configure_opts is not undefined
15# (in older versions of Bash, empty array is considered undefined)
16./configure "${configure_opts[@]+"${configure_opts[@]}"}"
15make 17make
16sudo make install 18sudo make install
17cd 19cd