Skip to content
Snippets Groups Projects
Commit 08a640c5 authored by Peter Palfrader's avatar Peter Palfrader
Browse files

Do not run configure from autogen.sh. Also switch to set -e instead of...

Do not run configure from autogen.sh.  Also switch to set -e instead of linking all the commands using &&

svn:r11158
parent 1f244d39
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
set -e
# Run this to generate all the initial makefiles, etc.
aclocal && \
autoheader && \
autoconf && \
automake --add-missing --copy && \
if test x$NOCONF = x ; then ./configure "$@"; fi
aclocal
autoheader
autoconf
automake --add-missing --copy
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment