summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-10-23 00:20:34 +0100
committerColin Watson <cjwatson@debian.org>2014-10-23 00:20:34 +0100
commitce301be3082e376ef73dd079f0389115f619786f (patch)
treec8484ccb96907caff09033526ae1e0dc0aca32da /autogen.sh
parent44f705aa292910bffe7ade7bcbc7cae59750e0ba (diff)
autogen.sh: Avoid "export VARIABLE=value" syntax
Older Solaris shells do not support this. Patch by Peter Bray.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index fa3fc9d1..a1c1ba4f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,7 +6,9 @@ if type gnulib-tool >/dev/null 2>&1; then
gnulib-tool --update >/dev/null
patch -s -p1 <gnulib/argp-domain.patch
patch -s -p1 <gnulib/fdutimens-hurd.patch
- export AUTOPOINT=true
+ AUTOPOINT=true
+ export AUTOPOINT
fi
-export LIBTOOLIZE_OPTIONS=--quiet
+LIBTOOLIZE_OPTIONS=--quiet
+export LIBTOOLIZE_OPTIONS
autoreconf -fi "$@"