diff options
| author | Palmer Dabbelt <palmer@dabbelt.com> | 2017-04-06 15:24:17 -0700 |
|---|---|---|
| committer | Palmer Dabbelt <palmer@dabbelt.com> | 2017-04-06 15:24:17 -0700 |
| commit | fab7311f18c49be82e8e1681c8966e576525d3ed (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /bootstrap | |
| parent | ffe0ced9ebd54ab1e297ebdf0f6b995b3e077989 (diff) | |
| download | riscv-openocd-__archive__.zip riscv-openocd-__archive__.tar.gz riscv-openocd-__archive__.tar.bz2 | |
archive branch__archive__
Diffstat (limited to 'bootstrap')
| -rwxr-xr-x | bootstrap | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/bootstrap b/bootstrap deleted file mode 100755 index 3b60fc6..0000000 --- a/bootstrap +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# Run the autotools bootstrap sequence to create the configure script - -# Abort execution on error -set -e - -if which libtoolize > /dev/null; then - libtoolize="libtoolize" -elif which glibtoolize >/dev/null; then - libtoolize="glibtoolize" -else - echo "$0: Error: libtool is required" >&2 - exit 1 -fi - -if [ "$1" = "nosubmodule" ]; then - SKIP_SUBMODULE=1 -elif [ -n "$1" ]; then - echo "$0: Illegal argument $1" - echo "USAGE: $0 [nosubmodule]" - exit 1 -fi - -# bootstrap the autotools -( -set -x -aclocal -${libtoolize} --automake --copy -autoconf -autoheader -automake --gnu --add-missing --copy -) - -if [ -n "$SKIP_SUBMODULE" ]; then - echo "Skipping submodule setup" -else - echo "Setting up submodules" - git submodule init - git submodule update -fi - -echo "Bootstrap complete. Quick build instructions:" -echo "./configure ...." |
