aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2014-10-03 18:58:59 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2014-10-03 23:45:26 +0000
commitb77b4eda8db4e7ebd7762d8543c713c15b207e90 (patch)
treea951795bc3e2b3bb8b0dd85e040b67eea166a06e /autogen.sh
parentd6b0539f452527d340c6d7e6c57652147214196d (diff)
downloadbitcoin-b77b4eda8db4e7ebd7762d8543c713c15b207e90.tar.xz
Bugfix: Replace bashisms with standard sh to fix build on non-BASH systems
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index ddfc09607e..3e26a18305 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,6 +3,7 @@ set -e
srcdir="$(dirname $0)"
cd "$srcdir"
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
- export LIBTOOLIZE="${GLIBTOOLIZE}"
+ LIBTOOLIZE="${GLIBTOOLIZE}"
+ export LIBTOOLIZE
fi
autoreconf --install --force --warnings=all