Skip to content
Snippets Groups Projects
Select Git revision
  • 1392c27cf9ff1a7f5f5477d23880f2e5c59c898e
  • master default protected
  • v0.10.0
  • v0.10.0-rc2
  • v0.10.0-rc1
  • v0.9.0
  • v0.9.0-rc1
  • v0.8.0
  • v0.8.0-rc2
  • v0.8.0-rc1
  • v0.7.0
  • v0.7.0-rc2
  • v0.7.0-rc1
  • v0.6.1
  • v0.6.0
  • v0.6.0-rc2
  • v0.6.0-rc1
  • v0.5.0
  • v0.5.0-rc2
  • v0.5.0-rc1
  • v0.4.0
  • v0.4.0-rc2
22 results

openocd.c

Blame
  • bootstrap 642 B
    #!/bin/sh -e
    # Run the autotools bootstrap sequence to create the configure script
    
    if libtoolize --version >/dev/null 2>&1; then
    	libtoolize="libtoolize"
    elif glibtoolize --version >/dev/null 2>&1; then
    	libtoolize="glibtoolize"
    else
    	echo "libtool is required" >&2
    	exit 1
    fi
    
    # bootstrap the autotools
    (
    set -x
    aclocal
    ${libtoolize} --automake --copy
    autoconf
    autoheader
    automake --gnu --add-missing --copy
    )
    
    # AM_MAINTAINER_MODE requires SVN users provide --enable-maintainer-mode
    # otherwise the documentation will fail to build due to missing version.texi
    echo "Bootstrap complete; you can './configure --enable-maintainer-mode ....'"