mirror of
https://git.hush.is/hush/hush3.git
synced 2025-12-15 00:04:46 -05:00
13 lines
407 B
Bash
Executable File
13 lines
407 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2016-2022 The Hush developers
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
set -e
|
|
srcdir="$(dirname $0)"
|
|
cd "$srcdir"
|
|
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
|
|
LIBTOOLIZE="${GLIBTOOLIZE}"
|
|
export LIBTOOLIZE
|
|
fi
|
|
autoreconf --install --force --warnings=all
|